mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
8a28eb1790
This reverts merge request !5
17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class WarehousesTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory(App\Models\Warehouse::class, 30)->create();
|
|
}
|
|
}
|