up
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?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'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user