mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-26 14:05:29 +03:00
12 lines
168 B
Plaintext
12 lines
168 B
Plaintext
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
|
||
|
class {{name}} extends Seeder
|
||
|
{
|
||
|
public function run()
|
||
|
{
|
||
|
factory({{model}}::class, {{count}})->create();
|
||
|
}
|
||
|
}
|