create user login activity
This commit is contained in:
33
app/Http/Requests/DataTableRequest.php
Normal file
33
app/Http/Requests/DataTableRequest.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?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:10',
|
||||
'order.key' => 'nullable|string',
|
||||
'order.dir' => 'nullable|in:asc,desc',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user