*/ class BilletFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'BIL_DATE' => $this->faker->date(), 'BIL_TITRE' => $this->faker->text(20), 'BIL_CONTENU' => $this->faker->text(100), 'created_at' => now(), 'updated_at' => now(), ]; } }