*/ class CredencialClienteFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = CredencialCliente::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'contra' => Hash::make('password'), 'correo' => $this->faker->unique()->safeEmail(), 'token' => null, 'fecha_hora' => null, ]; } }