feat: add report and report confirmation fields to Internship model and factory

This commit is contained in:
2025-11-03 18:23:40 +01:00
parent f32ce9fc99
commit 473e4cd62e
3 changed files with 18 additions and 0 deletions

View File

@@ -28,6 +28,8 @@ class InternshipFactory extends Factory
'semester' => fake()->randomElement(["WINTER", "SUMMER"]),
'position_description' => fake()->jobTitle(),
'agreement' => null,
'report' => null,
'report_confirmed' => false,
];
}
}