22 lines
515 B
PHP
22 lines
515 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Voucher;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class IndexVoucherRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'search' => ['nullable', 'string', 'max:100'], 'payment_status' => ['nullable', 'string', 'max:30'],
|
|
'per_page' => ['nullable', 'integer', 'min:1', 'max:100'], 'page' => ['nullable', 'integer', 'min:1'],
|
|
];
|
|
}
|
|
}
|