akaunting/app/Console/Stubs/Modules/factory.stub

29 lines
438 B
Plaintext
Raw Normal View History

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