1 | <?php |
||
13 | class ListUsers extends FormRequest |
||
14 | { |
||
15 | use ChecksPermissions; |
||
16 | |||
17 | /** |
||
18 | * Determine if the user is authorized to make this request. |
||
19 | * |
||
20 | * @return bool |
||
21 | */ |
||
22 | public function authorize() |
||
27 | |||
28 | /** |
||
29 | * Get the validation rules that apply to the request. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function rules() |
||
37 | } |
||
38 |