Siopas Inventory PETI for ISTW Website
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.

37 lines
937 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([
11 months ago
'id' => 'd961ad96-211b-4f68-9ff2-111111111111',
'name' => 'Gudang A',
'description' => 'Gudang utama',
'address' => 'Alamat Gudang A',
'created_by' => 'Seeder',
'updated_by' => 'Seeder',
]);
// Warehouse 2
m_warehouse::create([
11 months ago
'id' => 'a5c7b207-1a1c-43b8-89bf-222222222222',
'name' => 'Gudang B',
'description' => 'Gudang cabang',
'address' => 'Alamat Gudang B',
'created_by' => 'Seeder',
'updated_by' => 'Seeder',
]);
}
}