up
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class DetalleCompraUpdateRequest 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 [
|
||||
'compra_id' => ['required', 'integer', 'exists:compras,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'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user