This commit is contained in:
Lizandro Guarnizo
2026-01-18 11:21:19 -05:00
parent 18c43fe06f
commit 33688d297c
21 changed files with 958 additions and 14 deletions
+2 -2
View File
@@ -22,9 +22,9 @@ class ProveedorFactory extends Factory
{
return [
'nombre' => fake()->regexify('[A-Za-z0-9]{255}'),
'contacto' => fake()->regexify('[A-Za-z0-9]{255}'),
'nit' => fake()->regexify('[A-Za-z0-9]{20}'),
'categoria' => fake()->randomElement(['talleres','tintoreria','proveedor']),
'telefono' => fake()->regexify('[A-Za-z0-9]{20}'),
'correo' => fake()->regexify('[A-Za-z0-9]{255}'),
'direccion' => fake()->text(),
];
}