VacancyRequestEdit.php
2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class VacancyRequestEdit extends FormRequest
{
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
$Arr = [
'name' => [
'required',
'min:3',
'max:255',
],
/* 'category_id' => [
'numeric',
'min:0',
'max:9999999',
],
'telephone' => [
'min:3',
'max:255',
],
'email' => [
'min:3',
'max:255',
],
'salary' => [
'numeric',
'min:3',
'max:255',
],
'min_salary' => [
'numeric',
'min:0',
'max:9999999',
],
'max_salary' => [
'numeric',
'min:0',
'max:9999999',
],
'city' => [
'min:3',
'max:255',
],*/
'job_title_id[]' => [
'numeric',
'min:1',
'max:9999999'
]
];
return [
'name' => [
'required',
'min:3',
'max:255',
],
/*
'category_id' => [
'numeric',
'min:0',
'max:9999999',
],
'telephone' => [
'min:3',
'max:255',
],
'email' => [
'min:3',
'max:255',
],*/
];
}
public function messages() {
return [
'required' => 'Поле «:attribute» обязательно для заполнения',
'unique' => 'Такое значение поля «:attribute» уже используется',
'min' => [
'string' => 'Поле «:attribute» должно быть не меньше :min символов',
'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
],
'max' => [
'string' => 'Поле «:attribute» должно быть не больше :max символов',
'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
],
'mimes' => 'Файл «:attribute» должен иметь формат :values',
'numeric' => 'В поле «:attribute» должно быть указано целое число от 0 до 9999999',
];
}
}