You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
381 B
22 lines
381 B
<?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 [];
|
|
}
|
|
}
|
|
|
|
|