File: //home/marketing.cfbon.ru/public_html/app/Http/Requests/Site/Menu/CategoryRequest.php
<?php
namespace App\Http\Requests\Site\Menu;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        return true;
    }
    /**
     * Get the validation rules that apply to the request.
     *
     * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
     */
    public function rules(): array
    {
        return [
            'name' => 'required|string',
            'display_order' => 'nullable|int',
        ];
    }
    public function messages(): array
    {
        return [
            'name.required' => 'Поле "Имя" обязательно для заполнения.',
            'name.string' => 'Поле "Имя" должно быть строкой.',
            'display_order.int' => 'Поле "Порядок отображения" должно быть целым числом.',
        ];
    }
}