Tags extends Component
Table of Contents
- $hint : string|null
- $id : string
- $isSelect : bool
- $label : string|null
- $name : string
- $options : mixed
- $placeholder : string|null
- $value : string|null
- $values : mixed
- __construct() : mixed
- Create a new component instance.
- render() : View|string
- Get the view / contents that represent the component.
Properties
$hint
public
string|null
$hint
= null
$id
public
string
$id
$isSelect
public
bool
$isSelect
$label
public
string|null
$label
= null
$name
public
string
$name
$options
public
mixed
$options
$placeholder
public
string|null
$placeholder
= null
$value
public
string|null
$value
= null
$values
public
mixed
$values
Methods
__construct()
Create a new component instance.
public
__construct(string $name[, mixed $values = [] ][, string $id = null ][, mixed $label = null ][, mixed $options = [] ][, string $hint = null ]) : mixed
Parameters
- $name : string
- $values : mixed = []
- $id : string = null
- $label : mixed = null
- $options : mixed = []
- $hint : string = null
Return values
mixed —render()
Get the view / contents that represent the component.
public
render() : View|string