*/ class ListItemFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ // 'name' => $this->faker->name(), 'is_complete' => $this->faker->numberBetween($min = 0, $max = 1), ]; } }