mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-02 05:10:59 +00:00
31 lines
706 B
PHP
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'],
|
|
];
|
|
}
|
|
}
|