31 lines
743 B
PHP
31 lines
743 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class MovimientoCajaUpdateRequest 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'],
|
|
];
|
|
}
|
|
}
|