*/ class BillFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'bill_name' => $this->faker->text(), ]; } }