*/ class ProjectFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->sentence(3), 'description' => $this->faker->sentence(10), 'completed_at' => $this->faker->boolean(20) ? $this->faker->unixTime() : null, ]; } }