clara_old/stubs/nwidart-stubs/factory.stub
Daeng Deni Mardaeni 6210e33a3b Initial commit
2023-07-03 14:58:31 +07:00

29 lines
452 B
Plaintext

<?php
namespace $NAMESPACE$;
use Illuminate\Database\Eloquent\Factories\Factory;
class $NAME$Factory 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 [
//
];
}
}