Blame view
app/Http/Requests/CompanyRequest.php
1.94 KB
7c1e05248 Формы настройки с... |
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 |
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class CompanyRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the validation rules that apply to the request. * * @return array<string, mixed> */ public function rules() { return [ 'name' => 'required|min:1|max:255', 'email' => 'required|email|min:5', 'logo' => [ 'mimes:jpeg,jpg,png,ico', 'max:10000' ], 'image' => [ 'mimes:jpeg,jpg,png', 'max:10000' ], |
32cbe7736 Обновление блейдо... |
37 38 |
'time_mess' => 'required|numeric|min:0|max:365', 'time_resume' => 'required|numeric|min:0|max:365', |
7c1e05248 Формы настройки с... |
39 40 41 42 43 44 |
]; } public function messages() { return [ 'required' => 'Поле :attribute обязательно для ввода', |
32cbe7736 Обновление блейдо... |
45 |
'numeric' => 'Поле :attribute должно быть целым числом', |
7c1e05248 Формы настройки с... |
46 47 |
'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', |
32cbe7736 Обновление блейдо... |
48 49 |
'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт', 'numeric' => 'Поле «:attribute» должно быть не меньше :min', |
7c1e05248 Формы настройки с... |
50 51 52 |
], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', |
32cbe7736 Обновление блейдо... |
53 54 |
'file' => 'Файл «:attribute» должен быть не больше :max Кбайт', 'numeric' => 'Поле «:attribute» должно быть не больше :max', |
7c1e05248 Формы настройки с... |
55 56 57 58 59 |
], 'email' => 'Это поле должно быть формата email', ]; } } |