Files
ikea/app/Http/Requests/DataTableRequest.php
2022-07-30 11:21:58 +07:00

34 lines
690 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class DataTableRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'search' => 'nullable|string',
'per_page' => 'nullable|integer|min:0|max:1000',
'order.key' => 'nullable|string',
'order.dir' => 'nullable|in:asc,desc',
];
}
}