Files
pos_heidiver/app/Http/Requests/ProveedorStoreRequest.php
2026-01-06 15:35:59 -05:00

31 lines
755 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProveedorStoreRequest 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'],
'contacto' => ['nullable', 'string', 'max:255'],
'telefono' => ['nullable', 'string', 'max:20'],
'correo' => ['nullable', 'string', 'max:255', 'unique:proveedors,correo'],
'direccion' => ['nullable', 'string'],
];
}
}