1 | <?php namespace Arcanesoft\Auth\Http\Requests\Backend\Users; |
||
13 | abstract class UserRequest extends FormRequest |
||
14 | { |
||
15 | /* ------------------------------------------------------------------------------------------------ |
||
16 | | Main Functions |
||
17 | | ------------------------------------------------------------------------------------------------ |
||
18 | */ |
||
19 | /** |
||
20 | * Get all of the input and files for the request. |
||
21 | * |
||
22 | * @return array |
||
23 | */ |
||
24 | public function all() |
||
33 | |||
34 | /* ------------------------------------------------------------------------------------------------ |
||
35 | | Other Functions |
||
36 | | ------------------------------------------------------------------------------------------------ |
||
37 | */ |
||
38 | /** |
||
39 | * Get the roles rule. |
||
40 | * |
||
41 | * @return string |
||
42 | */ |
||
43 | protected function getRolesRule() |
||
47 | |||
48 | /** |
||
49 | * Get the role ids. |
||
50 | * |
||
51 | * @return \Illuminate\Database\Eloquent\Collection |
||
52 | */ |
||
53 | private function getRoleIds() |
||
59 | } |
||
60 |