Untitled
unknown
plain_text
2 years ago
1.4 kB
8
Indexable
<select id="treeviewSelect" class="form-select text-end" name="account_to">
@foreach($categories as $category)
<optgroup label="{{ $category->name_ar }}">
@foreach($category->children as $subcategory)
<optgroup label="{{ $subcategory->name_ar }}">
@foreach($subcategory->accounts as $account)
<option value="{{ $account->id }}">{{ $account->name_ar }}</option>
@endforeach
</optgroup>
@endforeach
@foreach($category->accounts as $account)
<option value="{{ $account->id }}">{{ $account->name_ar }}</option>
@endforeach
</optgroup>
@endforeach
</select>Editor is loading...