Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/app/Http/Requests/Lead/UpdateRequest.php
Назад
<?php namespace App\Http\Requests\Lead; use App\Http\Requests\CoreRequest; use App\Traits\CustomFieldsRequestTrait; class UpdateRequest extends CoreRequest { use CustomFieldsRequestTrait; /** * 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 */ public function rules() { $rules = [ 'client_name' => 'required', 'client_email' => 'nullable|email:rfc,strict|unique:leads,client_email,'.$this->route('lead_contact').',id,company_id,' . company()->id, ]; $rules = $this->customFieldRules($rules); return $rules; } public function attributes() { $attributes = []; $attributes = $this->customFieldsAttributes($attributes); $attributes['client_name'] = __('app.name'); $attributes['client_email'] = __('app.email'); return $attributes; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка