8 lines
221 B
PHP
8 lines
221 B
PHP
@if (isset($list) && count($list))
|
|
@foreach($list as $key => $optgroup)
|
|
<optgroup label="{{ $optgroup['label'] }}">
|
|
@include('components.options', ['list' => $optgroup['options']])
|
|
</optgroup>
|
|
@endforeach
|
|
@endif
|