Files
InvoiceShelf/app/Http/Requests/ReplacePaymentAllocationsRequest.php
T

31 lines
706 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ReplacePaymentAllocationsRequest 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.
*
* @return array<string, array<int, string>>
*/
public function rules(): array
{
return [
'allocations' => ['present', 'array'],
'allocations.*.invoice_id' => ['required', 'integer', 'distinct'],
'allocations.*.amount' => ['required', 'integer', 'min:1'],
];
}
}