I need to create a optgroupt
with laravel collective.
Below is my current code:
<select id="cmb" name="cmb">
<option></option>
@foreach($sedeCaptura as $i)
<optgroup label="SEDE - {{ $i["SedeCaptura"] }}">
<option value="{!! $i["SedeCaptura"] !!}" >
{!! $i["IdField"].' - '.$i["DescriptionField"].' - ('.$i["TotalField"].')' !!}
</option>
</optgroup>
@endforeach
</select>
How do I recreate this code with laravel collective?