Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/BadgeStoreRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Validation\Rule; use Intervention\Image\Facades\Image; class BadgeStoreRequest 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() { return [ 'title' => 'required|unique:badges,title|max:80', 'description' => [ 'required', function ($attribute, $value, $fail) { $strippedText = strip_tags($value); $charCount = mb_strlen($strippedText); if ($charCount < 10 || $charCount > 500) { $fail("The description must be between 10 and 500 characters."); } }, ], 'badge_image' => [ 'required', 'image', 'mimes:jpeg,png,jpg,webp', 'max:15360', function ($attribute, $value, $fail) { $image = Image::make($value); if ($image->width() != 116 || $image->height() != 135) { $fail('The badge image must be exactly 116x135 pixels.'); } }, ], ]; } /** * Get the custom messages for validator errors. * * @return array<string, mixed> */ public function messages() { return [ 'title.required' => 'The title is required.', 'title.unique' => 'This title has already been taken.', 'badge_image.required' => 'The badge image is required.', 'badge_image.image' => 'The badge image must be an image.', 'badge_image.mimes' => 'The badge image must be a file of type: jpeg, png, jpg, webp.', 'badge_image.max' => 'The badge image may not be greater than 15MB.', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка