*/ class ProjectTodoFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'project_id' => $this->faker->uuid, 'todo_id' => $this->faker->uuid, ]; } }