mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-26 14:05:29 +03:00
10 lines
150 B
Plaintext
10 lines
150 B
Plaintext
|
|
||
|
/**
|
||
|
* Factory definition for model {{model}}.
|
||
|
*/
|
||
|
$factory->define({{model}}::class, function ($faker) {
|
||
|
return [
|
||
|
{{factory_fields}}
|
||
|
];
|
||
|
});
|