Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/app/Http/Requests/Admin/LiveaboardItineraryInformationStoreRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; class LiveaboardItineraryInformationStoreRequest 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', // 'title' => 'required|unique:articles,title,' . request()->route('id'), // 'slug' => 'required|unique:articles,slug,' . request()->route('id'), 'status' => 'required|boolean', 'description' => [ 'required', function ($attribute, $value, $fail) { $strippedText = strip_tags($value); $charCount = mb_strlen($strippedText); if ($charCount < 10 || $charCount > 200000) { $fail("The Description must be between 10 and 200000 characters."); } }, ], 'liveaboard' => 'required|exists:liveaboards,id', ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка