1 | <?php namespace Arcanesoft\Blog\Http\Requests\Admin\Categories; |
||
9 | class CreateCategoryRequest extends CategoryFormRequest |
||
10 | { |
||
11 | /* ----------------------------------------------------------------- |
||
12 | | Main Methods |
||
13 | | ----------------------------------------------------------------- |
||
14 | */ |
||
15 | |||
16 | /** |
||
17 | * Determine if the user is authorized to make this request. |
||
18 | * |
||
19 | * @return bool |
||
20 | */ |
||
21 | public function authorize() |
||
25 | |||
26 | /** |
||
27 | * Get the validation rules that apply to the request. |
||
28 | * |
||
29 | * @return array |
||
30 | */ |
||
31 | public function rules() |
||
43 | } |
||
44 |