mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-26 05:55:28 +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();
|
|
}
|
|
}
|