VacansiaRequiest.php 2.94 KB
<?php

namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class VacansiaRequiest 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()
    {
        $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',
        ];

    }
}