Файловый менеджер - Редактировать - /home/clickysoft/public_html/calvary-p2.clickysoft.net/app/Http/Requests/Admin/EventStoreRequest.php
Назад
<?php namespace App\Http\Requests\Admin; use Illuminate\Foundation\Http\FormRequest; class EventStoreRequest extends FormRequest { public function authorize(): bool { return true; } public function rules(): array { return [ 'title' => 'required|string|max:100', 'organizer' => 'required|string|max:50', 'location' => 'required|string|max:50', 'date' => 'required|date|after:today', 'time_start' => 'required|date_format:H:i', 'time_end' => 'required|date_format:H:i|after:time_start', 'image' => 'required|image|mimes:jpeg,jpg,png|max:2048', 'description' => 'required|string|max:3200', 'has_unlimited_tickets' => 'required|boolean', 'total_tickets' => $this->input('has_unlimited_tickets', 'true') ? 'sometimes|nullable|numeric' : 'required|numeric', 'adult_price' => 'required|numeric', 'child_price' => 'required|numeric', 'status' => 'required|boolean' ]; } public function messages(): array { return [ 'image.max' => 'The image field must not be greater than 2 mb.' ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка