Files
pos_heidiver/database/factories/ClienteFactory.php
T
2026-01-06 15:35:59 -05:00

33 lines
840 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
use App\Models\Cliente;
class ClienteFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Cliente::class;
/**
* Define the model's default state.
*/
public function definition(): array
{
return [
'nombre' => fake()->regexify('[A-Za-z0-9]{255}'),
'correo' => fake()->regexify('[A-Za-z0-9]{255}'),
'telefono' => fake()->regexify('[A-Za-z0-9]{20}'),
'direccion' => fake()->text(),
'tipo_documento' => fake()->randomElement(["DNI","RUC","PASAPORTE"]),
'numero_documento' => fake()->regexify('[A-Za-z0-9]{20}'),
];
}
}