Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/CountryStoreRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; class CountryStoreRequest 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 [ 'name' => 'required|unique:countries,name', 'slug' => 'required|unique:countries,slug', 'status' => 'required|boolean', 'short_description' => [ 'required', function ($attribute, $value, $fail) { $strippedText = strip_tags($value); $charCount = mb_strlen($strippedText); if ($charCount < 10 || $charCount > 1000) { $fail("The description must be between 10 and 1000 characters."); } }, ], 'destination' => 'required|exists:destinations,id', // 'featured_image' => 'required|image|mimes:jpeg,png,jpg,webp|max:15360', 'meta_description' => 'nullable|max:255', 'meta_keywords' => 'nullable|max:255', 'meta_abstract' => 'nullable|max:255', 'opengraph_title' => 'nullable|max:60', 'opengraph_description' => 'nullable|max:300', ]; } public function messages() { return [ 'short_description.required' => 'The description field is required.', 'destination.required' => 'The destination field is required.', 'destination.exists' => 'The selected destination is invalid.', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка