*/ class OrderFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'details' => $this->faker->sentences(4, true), 'client' => $this->faker->name(), 'is_fulfilled' => $this->faker->boolean(), ]; } }