*/ class SalesFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'nama' => $this->faker->unique()->name(), 'no_hp' => $this->faker->phoneNumber(), 'alamat' => $this->faker->address(), ]; } }