Add multiple database seeders
This commit introduces seeders for various entities in the database, including HubunganPemilikJaminan, JenisFasilitasKredit, and others. These seeders populate the database with initial data for testing and development purposes.
This commit is contained in:
118
database/seeders/PemilikJaminanSeeder.php
Normal file
118
database/seeders/PemilikJaminanSeeder.php
Normal file
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Lpj\Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use Modules\Lpj\Models\PemilikJaminan;
|
||||
|
||||
class PemilikJaminanSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
PemilikJaminan::insert([
|
||||
[
|
||||
'debiture_id' => 2,
|
||||
'hubungan_pemilik_jaminan_id' => 1,
|
||||
'name' => 'Antonius Ginting',
|
||||
'npwp' => '234567890123456',
|
||||
'nomor_id' => '13144213123',
|
||||
'email' => 'x@gmail.com',
|
||||
'phone' => '081234567891',
|
||||
'province_code' => '31',
|
||||
'city_code' => '31.71',
|
||||
'district_code' => '31.71.06',
|
||||
'village_code' => '31.71.06.1001',
|
||||
'postal_code' => '10310',
|
||||
'address' => 'Jl. Menteng Tengah No.66',
|
||||
'status' => 1,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'created_by' => 2,
|
||||
'updated_by' => 2
|
||||
],
|
||||
[
|
||||
'debiture_id' => 7,
|
||||
'hubungan_pemilik_jaminan_id' => 1,
|
||||
'name' => 'Rahmat Rafli',
|
||||
'npwp' => '1234689743418451',
|
||||
'nomor_id' => '32754590325823',
|
||||
'email' => 'testing@mail.com',
|
||||
'phone' => '081385777611',
|
||||
'province_code' => '32',
|
||||
'city_code' => '32.75',
|
||||
'district_code' => '32.75.03',
|
||||
'village_code' => '32.75.03.1001',
|
||||
'postal_code' => '10310',
|
||||
'address' => 'Jl. Apel 1 no. 9',
|
||||
'status' => 1,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'created_by' => 3,
|
||||
'updated_by' => 3
|
||||
],
|
||||
[
|
||||
'debiture_id' => 1,
|
||||
'hubungan_pemilik_jaminan_id' => 1,
|
||||
'name' => 'Willy',
|
||||
'npwp' => '123455432109876',
|
||||
'nomor_id' => null,
|
||||
'email' => 'w@gmail.com',
|
||||
'phone' => '08113242341',
|
||||
'province_code' => '31',
|
||||
'city_code' => '31.74',
|
||||
'district_code' => '31.74.09',
|
||||
'village_code' => '31.74.09.1003',
|
||||
'postal_code' => '12630',
|
||||
'address' => null,
|
||||
'status' => 1,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'created_by' => 2,
|
||||
'updated_by' => 2
|
||||
],
|
||||
[
|
||||
'debiture_id' => 4,
|
||||
'hubungan_pemilik_jaminan_id' => 1,
|
||||
'name' => 'Testing',
|
||||
'npwp' => '1029280183912111',
|
||||
'nomor_id' => null,
|
||||
'email' => 'testing@email.com',
|
||||
'phone' => '098172386',
|
||||
'province_code' => '11',
|
||||
'city_code' => '11.01',
|
||||
'district_code' => '11.01.01',
|
||||
'village_code' => '11.01.01.2001',
|
||||
'postal_code' => '23773',
|
||||
'address' => 'alamat',
|
||||
'status' => 1,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'created_by' => 2,
|
||||
'updated_by' => 2
|
||||
],
|
||||
[
|
||||
'debiture_id' => 7,
|
||||
'hubungan_pemilik_jaminan_id' => 1,
|
||||
'name' => 'Testing 2',
|
||||
'npwp' => '1234689743418451',
|
||||
'nomor_id' => null,
|
||||
'email' => 'testing@mail.com',
|
||||
'phone' => '081385777611',
|
||||
'province_code' => '31',
|
||||
'city_code' => '31.71',
|
||||
'district_code' => '31.71.06',
|
||||
'village_code' => '31.71.06.1001',
|
||||
'postal_code' => '10310',
|
||||
'address' => 'Jl. Menteng Raya no. 13',
|
||||
'status' => 1,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'created_by' => 2,
|
||||
'updated_by' => 2
|
||||
]
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user