File: /home/marketing.cfbon.ru/public_html/app/Http/Requests/Promotion/PromotionRequest.php
<?php
namespace App\Http\Requests\Promotion;
use App\Enums\PromotionType;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class PromotionRequest 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>
     */
    protected function prepareForValidation() : void
    {
        $this->merge([
            'is_active' => $this->has('is_active'),
        ]);
    }
    public function rules(): array
    {
        $rules = [
            'promotion_type' => ['required', Rule::enum(PromotionType::class)],
            'name' => 'nullable|string',
            'title' => 'required|string',
            'description' => 'nullable|string',
            'is_active' => 'nullable',
        ];
        if ($this->isMethod('post')) {
            $rules['img'] = [
                'required',
                'file',
                'mimes:jpeg,png,jpg,gif,svg',
                'max:5120',
            ];
        } else {
            $rules['img'] = [
                'sometimes',
                'file',
                'mimes:jpeg,png,jpg,gif,svg',
                'max:5120',
            ];
        }
        return $rules;
    }
    public function messages(): array
    {
        return [
            'promotion_type.required' => 'Поле "Тип акции" обязательно для заполнения.',
            'promotion_type.enum' => 'Недопустимое значение для поля "Тип акции".',
            'name.required' => 'Поле "Имя" обязательно для заполнения.',
            'name.string' => 'Поле "Имя" должно быть строкой.',
            'title.required' => 'Поле "Заголовок" обязательно для заполнения.',
            'title.string' => 'Поле "Заголовок" должно быть строкой.',
            'description.string' => 'Поле "Описание" должно быть строкой.',
            'img.mimes' => 'Поле "Изображение" должно быть файлом одного из форматов: jpeg, png, jpg или gif.',
            'img.file' => 'Поле "Изображение" должно быть файлом.',
            'img.required' => 'Поле "Изображение" обязательно для заполнения.',
            'img.max' => 'Поле "Изображение" должно быть не больше 5МБ.',
        ];
    }
}