getSelectOption() public method

Get the select option for the given value.
public getSelectOption ( string $display, string $value, string $selected ) : Illuminate\Support\HtmlString
$display string
$value string
$selected string
return Illuminate\Support\HtmlString
Exemplo n.º 1
0
 /**
  * Get the select option for the given value.
  *
  * @param string $display
  * @param string $value
  * @param string $selected
  * @return string 
  * @static 
  */
 public static function getSelectOption($display, $value, $selected)
 {
     return \Collective\Html\FormBuilder::getSelectOption($display, $value, $selected);
 }