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

30 lines
687 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class InventarioStoreRequest 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 [
'producto_id' => ['required', 'integer', 'exists:productos,id'],
'stock_actual' => ['required', 'integer'],
'stock_minimo' => ['required', 'integer'],
'ubicacion' => ['nullable', 'string', 'max:255'],
];
}
}