Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/app/View/Components/Forms/Range.php
Назад
<?php namespace App\View\Components\Forms; use Illuminate\Contracts\View\View; use Illuminate\View\Component; class Range extends Component { public $fieldLabel; public $fieldValue; public $fieldName; public $fieldId; public $fieldHelp; public $disabled; public $max; public $min; /** * Create a new component instance. * * @return void */ public function __construct($fieldLabel, $fieldName, $fieldId, $fieldValue = null, $fieldHelp = null, $disabled = false, $max = null, $min = null) { $this->fieldLabel = $fieldLabel; $this->fieldValue = $fieldValue; $this->fieldName = $fieldName; $this->fieldId = $fieldId; $this->fieldHelp = $fieldHelp; $this->disabled = $disabled; $this->max = $max; $this->min = $min; } /** * Get the view / contents that represent the component. * * @return View|string */ public function render() { return view('components.forms.range'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка