athenahr/resources/views/vendor/adminlte/partials/navbar/dropdown-item-link.blade.php
miguel456 2b1caeb80c
branch commit
Signed-off-by: miguel456 <me@nogueira.codes>
2023-06-29 18:21:58 +01:00

27 lines
778 B
PHP
Executable File

<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>