new commit
This commit is contained in:
Vendored
+26
@@ -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>
|
||||
Reference in New Issue
Block a user