You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
723 B
18 lines
723 B
<!-- Nav tabs -->
|
|
<ul class="nav nav-tabs">
|
|
<li class="{{ Request::segment(1) == 'home' ? 'active' : '' }}">
|
|
{!! link_to_route('home', trans('nav_menu.dashboard')) !!}
|
|
</li>
|
|
<li class="{{ Request::segment(1) == 'profile' ? 'active' : '' }}">
|
|
{!! link_to_route('users.profile.show', trans('auth.profile')) !!}
|
|
</li>
|
|
@can('manage_agency')
|
|
<li class="{{ Request::segment(1) == 'agency' ? 'active' : '' }}">
|
|
{!! link_to_route('users.agency.show', trans('nav_menu.agency')) !!}
|
|
</li>
|
|
<li class="{{ Request::segment(1) == 'users' ? 'active' : '' }}">
|
|
{!! link_to_route('users.index', trans('user.list')) !!}
|
|
</li>
|
|
@endcan
|
|
</ul>
|
|
<br>
|