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