Файловый менеджер - Редактировать - /home/clickysoft/public_html/somni.clickysoft.net/app/Http/Requests/UpdatePropertyRequest.php
Назад
<?php namespace App\Http\Requests; use App\Models\Property; use Gate; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Response; class UpdatePropertyRequest extends FormRequest { public function authorize() { return Gate::allows('property_edit'); } public function rules() { return [ 'name' => [ 'string', 'required', ], 'address' => [ 'string', 'required', ], 'type' => [ 'required', ], 'country_id' => [ 'required', 'integer', 'min:-2147483648', 'max:2147483647', ], 'city_id' => [ 'required', 'integer', 'min:-2147483648', 'max:2147483647', ], 'state_id' => [ 'required', 'integer', 'min:-2147483648', 'max:2147483647', ], 'zip_code' => [ 'string', 'required', ], 'purchase_date' => [ 'required', 'date_format:' . config('panel.date_format'), ], 'purchase_term' => [ 'required', ], ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка