29 lines
474 B
Plaintext
Raw Normal View History

2019-11-16 10:21:14 +03:00
<?php
2020-10-17 14:53:24 +03:00
namespace $NAMESPACE$;
use Illuminate\Database\Eloquent\Factories\Factory;
2019-11-16 10:21:14 +03:00
use Faker\Generator as Faker;
2020-10-17 14:53:24 +03:00
class $NAME$ extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = \$MODEL_NAMESPACE$\$NAME$::class;
2019-11-16 10:21:14 +03:00
2020-10-17 14:53:24 +03:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}