datatable.directory codebase
				https://datatable.directory/
			
			
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							1.2 KiB
						
					
					
				| @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 !!}
 | |
|   <form method="POST" action="{{ route('toggle-dark-mode') }}" aria-hidden="true">
 | |
|     @csrf
 | |
|     <button id="toggle-dark-mode-btn" class="{{ $aclass }}" type="submit" onclick="event.preventDefault(); toggleDarkMode();">
 | |
|         <div class="dark-mode-switch-on">
 | |
|             <i class="fa-sun-o fa-pr"></i>{{ __('Light Mode') }}
 | |
|         </div>
 | |
|         <div class="dark-mode-switch-off">
 | |
|             <i class="fa-moon-o fa-pr"></i>{{ __('Dark Mode') }}
 | |
|         </div>
 | |
|     </button>
 | |
|   </form>
 | |
| 
 | |
| {!! $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>
 | |
| 
 |