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.
|
|
|
@php
|
|
|
|
|
|
|
|
$li = $dropdown ? '' : '<li class="nav-item ml-1 d-md-none">';
|
|
|
|
$aclass = $dropdown ? 'dropdown-item' : 'nav-link';
|
|
|
|
|
|
|
|
@endphp
|
|
|
|
|
|
|
|
{!! $li !!}
|
|
|
|
<a class="{{ $aclass }}" href="{{ route('home') }}">
|
|
|
|
<i class="fa-home fa-pr"></i>{{ __('Your Profile') }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{!! $li !!}
|
|
|
|
<a class="{{ $aclass }}" href="{{ route('account.edit') }}">
|
|
|
|
<i class="fa-key-modern fa-pr"></i>{{ __('Settings') }}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{!! $li !!}
|
|
|
|
<a class="{{ $aclass }}" href="{{ route('logout') }}"
|
|
|
|
onclick="event.preventDefault(); document.getElementById('logout-form').submit();">
|
|
|
|
{{-- this is some hack against CSRF - logout only via POST --}}
|
|
|
|
<i class="fa-sign-out fa-pr"></i>{{ __('Logout') }}
|
|
|
|
</a>
|