29 lines
438 B
Plaintext
Raw Permalink Normal View History

2019-11-16 10:21:14 +03:00
<?php
2020-10-17 14:53:24 +03:00
namespace $NAMESPACE$;
2021-01-07 11:06:03 +03:00
use App\Abstracts\Factory;
use $MODEL_NAMESPACE$\$NAME$ as Model;
2020-10-17 14:53:24 +03:00
class $NAME$ extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
2021-01-07 11:06:03 +03:00
protected $model = Model::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 [
//
];
}
}