Files
lpj/database/seeders/IjinUsahaSeeder.php

68 lines
1.8 KiB
PHP

<?php
namespace Modules\Lpj\Database\Seeders;
use Illuminate\Database\Seeder;
use Modules\Lpj\Models\IjinUsaha;
class IjinUsahaSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
IjinUsaha::insert([
[
'code' => 'IU001',
'name' => 'Bisnis',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU002',
'name' => 'Properti',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU003',
'name' => 'Personal Properti',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU004',
'name' => 'Properti Sederhana',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU005',
'name' => 'Kep Men Keu RI Nomor 104/KM.1/2018',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU006',
'name' => 'Kep Men Keu RI Nomor 174/KM.1/2018',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
[
'code' => 'IU007',
'name' => 'Kep Men Keu RI Nomor 368/KM.1/2020',
'status' => 1,
'created_at' => now(),
'updated_at' => now()
],
]);
}
}