forked from TFMM/silent-auction
12 lines
476 B
PHP
12 lines
476 B
PHP
<a class="dropdown-item {{ $item['class'] }}" href="{{ $item['href']??'' }}">
|
|
@if(isset($item['icon']))
|
|
<span class="nav-link-icon d-md-none d-lg-inline-block">
|
|
<!-- Download SVG icon from http://tabler-icons.io/i/package -->
|
|
<i class="{{ $item['icon'] ?? '' }} {{
|
|
isset($item['icon_color']) ? 'text-' . $item['icon_color'] : ''
|
|
}}"></i>
|
|
</span>
|
|
@endif
|
|
{{ $item['text']??'' }}
|
|
</a>
|