| 1 | <?php |
||
| 14 | class GroupRequest extends Request |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Determine if the user is authorized to make this request. |
||
| 18 | * |
||
| 19 | * @return bool |
||
| 20 | */ |
||
| 21 | 15 | public function authorize() |
|
| 22 | { |
||
| 23 | 15 | return true; |
|
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get the validation rules that apply to the request. |
||
| 28 | * |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | 15 | public function rules() |
|
| 39 | } |
||
| 40 |