2020-10-17 14:53:24 +03:00

29 lines
474 B
Plaintext

<?php
namespace $NAMESPACE$;
use Illuminate\Database\Eloquent\Factories\Factory;
use Faker\Generator as Faker;
class $NAME$ extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = \$MODEL_NAMESPACE$\$NAME$::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}