Open sidebar
<?php Form::macro( 'selectRequired', function($name, $options = [], $selected = null, $attributes = [], $disabled = []) { $html = '<select name="' . $name . '"'; foreach ($attributes as $attribute => $value) { $html .= ' ' . $attribute . '="' . $value . '"'; } $html .= '>'; foreach ($options as $value => $text) { $html .= '<option value="' . $value . '"' . ($value == $selected ? ' selected="selected"' : '') . (in_array($value, $disabled) ? ' disabled="disabled"' : '') . '>' . $text . '</option>'; } $html .= '</select>'; return $html; } );
Close sidebar
Back
Please note that all pasted data is publicly available.
X (fomerly Twitter)
GitHub
Use setting
Back
Please note that all pasted data is publicly available.
X (fomerly Twitter)
GitHub
Use setting