mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
17 lines
264 B
PHP
17 lines
264 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PackingListsTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory(App\Models\PackingList::class, 300)->create();
|
|
}
|
|
}
|