22 lines
419 B
PHP
22 lines
419 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Payments;
|
|
|
|
use App\Http\Requests\ApiFormRequest;
|
|
|
|
class PaymentManualSearchRequest extends ApiFormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'search_term' => ['nullable', 'string', 'max:255'],
|
|
'school_year' => ['nullable', 'string', 'max:50'],
|
|
];
|
|
}
|
|
}
|