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.
38 lines
995 B
38 lines
995 B
<?php |
|
|
|
namespace Database\Seeders; |
|
|
|
use App\Models\m_warehouse; |
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents; |
|
use Illuminate\Database\Seeder; |
|
|
|
class WarehouseSeeder extends Seeder |
|
{ |
|
/** |
|
* Run the database seeds. |
|
*/ |
|
public function run(): void |
|
{ |
|
// Warehouse 1 |
|
m_warehouse::create([ |
|
'id' => 'd961ad96-211b-4f68-9ff2-111111111111', |
|
'id_incre' => 1, |
|
'name' => 'Gudang A', |
|
'description' => 'Gudang utama', |
|
'address' => 'Alamat Gudang A', |
|
'created_by' => 'Seeder', |
|
'updated_by' => 'Seeder', |
|
]); |
|
|
|
// Warehouse 2 |
|
m_warehouse::create([ |
|
'id' => 'a5c7b207-1a1c-43b8-89bf-222222222222', |
|
'id_incre' => 2, |
|
'name' => 'Gudang B', |
|
'description' => 'Gudang cabang', |
|
'address' => 'Alamat Gudang B', |
|
'created_by' => 'Seeder', |
|
'updated_by' => 'Seeder', |
|
]); |
|
} |
|
}
|
|
|