Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/app/Http/Requests/Deal/StoreRequest.php
Назад
<?php namespace App\Http\Requests\Deal; use App\Http\Requests\CoreRequest; use App\Traits\CustomFieldsRequestTrait; class StoreRequest 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 = array(); $rules['lead_contact'] = 'required'; $rules['name'] = 'required'; $rules['pipeline'] = 'required'; $rules['stage_id'] = 'required'; $rules['close_date'] = 'required'; $rules['value'] = 'required'; $rules = $this->customFieldRules($rules); return $rules; } public function attributes() { $attributes = []; $attributes = $this->customFieldsAttributes($attributes); $attributes['name'] = __('modules.deal.dealName'); $attributes['stage_id'] = __('modules.deal.leadStages'); return $attributes; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка