2023-12-27 22:54:58 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Form\Models\Form;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
/**
|
2023-12-31 21:02:40 +01:00
|
|
|
* @extends Factory<Form>
|
2023-12-27 22:54:58 +01:00
|
|
|
*/
|
|
|
|
class FormFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
2023-12-31 21:02:40 +01:00
|
|
|
* @var class-string<Form>
|
2023-12-27 22:54:58 +01:00
|
|
|
*/
|
|
|
|
protected $model = Form::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array<string, mixed>
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|