wip on loanorders
This commit is contained in:
@@ -12,8 +12,11 @@ class DatabaseSeeder extends Seeder
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$this->call([BranchTableSeeder::class]);
|
||||
$this->call([UsersTableSeeder::class]);
|
||||
$this->call([LoanTypeSeeder::class]);
|
||||
$this->call([
|
||||
UsersTableSeeder::class,
|
||||
ProvinceTableSeeder::class,
|
||||
BranchTableSeeder::class,
|
||||
LoanTypeSeeder::class,
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
64
database/seeders/ProvinceTableSeeder.php
Normal file
64
database/seeders/ProvinceTableSeeder.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\System\Location\Province;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ProvinceTableSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$datas = [
|
||||
[
|
||||
'region' => 'ag',
|
||||
'name' => 'Arçabil',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'ag',
|
||||
'name' => 'Bagtyýarlyk',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'ag',
|
||||
'name' => 'Berkararlyk',
|
||||
'active' => true,
|
||||
],
|
||||
|
||||
[
|
||||
'region' => 'ag',
|
||||
'name' => 'Çandybil',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'ag',
|
||||
'name' => 'Köpetdag',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'ah',
|
||||
'name' => 'Altyn-Asyr',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'ah',
|
||||
'name' => 'Ak-Bugdaý',
|
||||
'active' => true,
|
||||
],
|
||||
[
|
||||
'region' => 'mr',
|
||||
'name' => 'Mary',
|
||||
'active' => true,
|
||||
],
|
||||
];
|
||||
|
||||
foreach ($datas as $data) {
|
||||
Province::create($data);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user