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

31 lines
822 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class DetalleVentumUpdateRequest 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 [
'venta_id' => ['required', 'integer', 'exists:ventas,id'],
'producto_id' => ['required', 'integer', 'exists:productos,id'],
'cantidad' => ['required', 'integer'],
'precio_unitario' => ['required', 'numeric', 'between:-99999999.99,99999999.99'],
'subtotal' => ['required', 'numeric', 'between:-99999999.99,99999999.99'],
];
}
}