mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/tickme.git
synced 2026-08-19 04:23:56 +00:00
17 lines
278 B
Plaintext
17 lines
278 B
Plaintext
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class $MODEL_NAME_PLURAL$TableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
factory($NAMESPACE_MODEL$\$MODEL_NAME$::class, 30)->create();
|
|
}
|
|
}
|