up
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?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}'),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user