Blame view

app/Http/Requests/FlotRequest.php 1.5 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
29
30
31
32
  <?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',
              'image' => [
                  'mimes:jpeg,jpg,png',
                  'max:20000'
              ],
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
33
34
              'region' => 'required|min:3|max:255',
              'power' => 'required|min:3|max:255'
d152a3a68   Андрей Ларионов   Создание основных...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
          ];
      }
  
      public function messages() {
          return [
              'required' => 'Поле :attribute обязательно для ввода',
              'min' => [
                  'string' => 'Поле «:attribute» должно быть не меньше :min символов',
                  'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
              ],
              'max' => [
                  'string' => 'Поле «:attribute» должно быть не больше :max символов',
                  'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
              ],
              'email' => 'Введите корректный емайл'
  
          ];
      }
  }