new commit

This commit is contained in:
fiqhpratama
2024-11-27 11:16:45 +07:00
parent 8435faf0e9
commit 453d9bb470
10880 changed files with 2249737 additions and 72 deletions
@@ -0,0 +1,26 @@
<li @isset($item['id']) id="{{ $item['id'] }}" @endisset>
<a class="dropdown-item {{ $item['class'] }}" href="{{ $item['href'] }}"
@isset($item['target']) target="{{ $item['target'] }}" @endisset
{!! $item['data-compiled'] ?? '' !!}>
{{-- Icon (optional) --}}
@isset($item['icon'])
<i class="{{ $item['icon'] ?? '' }} {{
isset($item['icon_color']) ? 'text-' . $item['icon_color'] : ''
}}"></i>
@endisset
{{-- Text --}}
{{ $item['text'] }}
{{-- Label (optional) --}}
@isset($item['label'])
<span class="badge badge-{{ $item['label_color'] ?? 'primary' }}">
{{ $item['label'] }}
</span>
@endisset
</a>
</li>