mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 11:15:09 -05:00
14 lines
341 B
PHP
14 lines
341 B
PHP
<?php
|
|
/** @var string[] $options */
|
|
/** @var string $selected */
|
|
?>
|
|
|
|
<select {{ $attributes->merge(['class' => 'input-global-dropdown']) }}>
|
|
@foreach($options as $option)
|
|
<option value="{{ $option }}"
|
|
@selected($option === $selected)
|
|
>
|
|
{{ $option }}
|
|
</option>
|
|
@endforeach
|
|
</select>
|