12 lines
320 B
PHP
12 lines
320 B
PHP
@if (Route::currentRouteName() == $route)
|
|
<li class="selected">
|
|
<i class="{{ $icon }}" aria-hidden="true"></i>
|
|
<strong>{{ trans($title) }}</strong>
|
|
</li>
|
|
@else
|
|
<li class="bg-white">
|
|
<i class="{{ $icon }}" aria-hidden="true"></i>
|
|
<a href="{{ route($route) }}">{{ trans($title) }}</a>
|
|
</li>
|
|
@endif
|