File: //home/marketing.cfbon.ru/public_html/app/Http/Requests/Site/Menu/VolumeRequest.php
<?php
namespace App\Http\Requests\Site\Menu;
use Illuminate\Foundation\Http\FormRequest;
class VolumeRequest 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',
            'size' => 'required|int',
        ];
    }
    public function messages(): array
    {
        return [
            'name.required' => 'Поле "Имя" обязательно для заполнения.',
            'name.string' => 'Поле "Имя" должно быть строкой.',
            'size.required' => 'Поле "Объем" обязательно для заполнения.',
            'size.int' => 'Поле "Объем" должно быть целым числом.',
        ];
    }
}