*/ final class ProjectFactory extends Factory { protected $model = Project::class; public function definition(): array { return [ 'name' => $this->faker->name(), 'start_date' => Carbon::now(), 'end_date' => Carbon::now(), 'description' => $this->faker->text(), 'url' => $this->faker->url(), 'highlights' => $this->faker->words(), 'resume_id' => Resume::factory(), ]; } }