32 lines
692 B
PHP
32 lines
692 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Employee;
|
|
use App\Models\Explanation;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<Explanation>
|
|
*/
|
|
class ExplanationFactory extends Factory
|
|
{
|
|
protected $model = Explanation::class;
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'employee_id' => Employee::factory(),
|
|
'explanation_date' => fake()->dateTimeBetween('-1 year', 'now'),
|
|
'reason' => fake()->sentence(),
|
|
'description' => fake()->paragraph(),
|
|
'attachment_path' => null,
|
|
];
|
|
}
|
|
}
|