*/ class CustomerFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'customer_number' => 'CS' . now()->format('YmdHis'), 'name' => $this->faker->name(), 'phone' => $this->faker->phoneNumber(), 'address' => $this->faker->address, 'gender_id' => random_int(1, 2), ]; } }