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