1 | <?php |
||
2 | |||
3 | namespace App\Http\Requests; |
||
4 | |||
5 | use Illuminate\Foundation\Http\FormRequest; |
||
6 | |||
7 | class SkillCrudRequest 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 |
||
15 | { |
||
16 | // Only allow updates if the user is a logged in Admin. |
||
17 | return backpack_auth()->check(); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
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 | 'name' => 'required|unique_translation:skills,name' . (isset($this->id) ? ",{$this->id}" : ''), |
||
29 | 'description' => 'required', |
||
30 | 'skill_type_id' => 'exists:skill_types,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 |
||
40 | { |
||
41 | return [ |
||
42 | 'name.required' => 'Please enter a Skill name.', |
||
43 | 'name.unique_translation' => 'A Skill with this name already exists.', |
||
44 | 'skill_type_id.exists' => 'Please use an existing Skill Type.' |
||
45 | ]; |
||
46 | } |
||
47 | } |
||
48 |