Blame view
app/Http/Requests/FlotRequest.php
1.62 KB
d152a3a68 Создание основных... |
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 |
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class FlotRequest 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:3|max:255', 'text' => 'required|min:5', |
09dcec17a fixes |
29 30 31 32 33 34 35 36 37 |
'image' => [ 'mimes:jpeg,jpg,png', 'max:20000' ], 'region' => 'nullable|min:3|max:255', 'power' => 'nullable|min:3|max:255', 'DWT' => 'nullable|max:255', 'POWER_GD' => 'nullable|max:255', 'IMO' => 'nullable|max:255', |
d152a3a68 Создание основных... |
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
]; } public function messages() { return [ 'required' => 'Поле :attribute обязательно для ввода', 'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' ], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' ], 'email' => 'Введите корректный емайл' ]; } } |