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