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

31 lines
742 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class MovimientoCajaStoreRequest 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 [
'caja_id' => ['required', 'integer', 'exists:cajas,id'],
'tipo' => ['required', 'in:Ingreso,Egreso'],
'monto' => ['required', 'numeric', 'between:-99999999.99,99999999.99'],
'descripcion' => ['nullable', 'string'],
'fecha' => ['required'],
];
}
}