Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SkillCategoryCrudRequest extends FormRequest |
||
8 | { |
||
9 | /** |
||
10 | * Determine if the user is authorized to make this request. |
||
11 | * |
||
12 | * @return boolean |
||
13 | */ |
||
14 | public function authorize() : bool |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Get the validation rules that apply to the request. |
||
22 | * |
||
23 | * @return string[] |
||
24 | */ |
||
25 | public function rules() : array |
||
26 | { |
||
27 | return [ |
||
28 | 'key' => 'required|alpha_dash|unique:skill_categories,key' . (isset($this->id) ? ",{$this->id}" : ''), |
||
29 | 'name' => 'required', |
||
30 | 'parent_category_id' => 'required' . (isset($this->id) ? "|not_in:{$this->id}" : ''), |
||
31 | ]; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Get the validation messages that apply to the request. |
||
36 | * |
||
37 | * @return string[] |
||
38 | */ |
||
39 | public function messages() : array |
||
45 | ]; |
||
46 | } |
||
48 |