mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
18 lines
300 B
PHP
18 lines
300 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ContactsTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
if (app()->environment('local'))
|
|
factory(App\Models\Contact::class, 30)->create();
|
|
}
|
|
}
|