You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
921 B
34 lines
921 B
<?php |
|
|
|
namespace Database\Seeders; |
|
|
|
use App\Models\Kondisi_Peti; |
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents; |
|
use Illuminate\Database\Seeder; |
|
|
|
class Kondisi_PetiSeeder extends Seeder |
|
{ |
|
/** |
|
* Run the database seeds. |
|
*/ |
|
public function run(): void |
|
{ |
|
// Sisipkan data Kondisi Peti Rusak |
|
Kondisi_Peti::create([ |
|
'id' => 'd961ad96-211b-4f68-9ff2-111111111111', |
|
'nama_kondisi' => 'Rusak', |
|
'deskripsi_kondisi' => 'Barang Rusak', |
|
'created_by' => 'Seeder', |
|
'updated_by' => 'Seeder', |
|
]); |
|
|
|
// Sisipkan data Kondisi Peti Baik |
|
Kondisi_Peti::create([ |
|
'id' => 'a5c7b207-1a1c-43b8-89bf-222222222222', |
|
'nama_kondisi' => 'Ready', |
|
'deskripsi_kondisi' => 'Barang Siap Bawa', |
|
'created_by' => 'Seeder', |
|
'updated_by' => 'Seeder', |
|
]); |
|
} |
|
}
|
|
|