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

34 lines
1018 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProductoUpdateRequest 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'],
'descripcion' => ['nullable', 'string'],
'codigo_barras' => ['required', 'string', 'max:50', 'unique:productos,codigo_barras'],
'precio_compra' => ['required', 'numeric', 'between:-99999999.99,99999999.99'],
'precio_venta' => ['required', 'numeric', 'between:-99999999.99,99999999.99'],
'stock' => ['required', 'integer'],
'categoria_id' => ['required', 'integer', 'exists:categorias,id'],
'estado' => ['required', 'in:activo,inactivo'],
];
}
}