? как правильно такую валидацию сделать ?
https://laravel.com/docs/8.x/validation#rule-max
Сделал так 'attachments' => ['nullable',function ($attribute, $value, $fail) { $count = 3; if (count($value) > $count) { $fail('The max count of uploaded files can not be more than '.$count.'.'); } }], 'attachments.*' => 'mimes:png,jpg,jpeg,pdf|max:4096',
Обсуждают сегодня