up
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class ClienteUpdateRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'nombre' => ['required', 'string', 'max:255'],
|
||||
'correo' => ['nullable', 'string', 'max:255', 'unique:clientes,correo'],
|
||||
'telefono' => ['nullable', 'string', 'max:20'],
|
||||
'direccion' => ['nullable', 'string'],
|
||||
'tipo_documento' => ['required', 'in:DNI,RUC,PASAPORTE'],
|
||||
'numero_documento' => ['required', 'string', 'max:20', 'unique:clientes,numero_documento'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user