private static function getOptions($options) { return implode('', Lists::map($options, function ($val, $key) use($inputInfo) { return '<option value="' . $val . '"' . ($inputInfo['value'] === $val ? ' selected="selected" ' : '') . '>' . (is_string($key) ? $key : $val) . '</option>'; })); }