D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
3023067
/
cwd
/
public_html
/
vendor
/
nwidart
/
laravel-modules
/
src
/
Commands
/
stubs
/
Filename :
factory.stub
back
Copy
<?php namespace $NAMESPACE$; use Illuminate\Database\Eloquent\Factories\Factory; class $NAME$Factory extends Factory { /** * The name of the factory's corresponding model. */ protected $model = \$MODEL_NAMESPACE$\$NAME$::class; /** * Define the model's default state. */ public function definition(): array { return []; } }