File manager - Edit - /var/www/payraty/lms_main/resources/views/admin/navigation.blade.php
Back
@php $current_route = Route::currentRouteName(); @endphp <div class="sidebar-logo-area"> <a href="#" class="sidebar-logos"> <img class="sidebar-logo-lg" height="50px" src="{{ get_image(get_frontend_settings('dark_logo')) }}" alt=""> <img class="sidebar-logo-sm" height="40px" src="{{ get_image(get_frontend_settings('favicon')) }}" alt=""> </a> <button class="sidebar-cross menu-toggler d-block d-lg-none"> <span class="fi-rr-cross"></span> </button> </div> <!-- <h3 class="sidebar-title fs-12px px-30px pb-20px text-uppercase mt-4">{{ get_phrase('Main Menu') }}</h3> --> <div class="sidebar-nav-area"> <nav class="sidebar-nav"> <ul class=""> @if (has_permission('admin.dashboard')) <li class="sidebar-first-li {{ $current_route == 'admin.dashboard' ? 'active' : '' }}"> <a href="{{ route('admin.dashboard') }}"> <span class="icon fi-rr-house-blank"></span> <div class="text"> <span>{{ get_phrase('Dashboard') }}</span> </div> </a> </li> @endif @if (has_permission('admin.categories')) <li class="sidebar-first-li {{ $current_route == 'admin.categories' ? 'active' : '' }}"> <a href="{{ route('admin.categories') }}"> <span class="icon fi-rr-chart-tree-map"></span> <div class="text"> <span>{{ get_phrase('Category') }}</span> </div> </a> </li> @endif @if (has_permission('admin.courses')) <li class="sidebar-first-li first-li-have-sub @if ($current_route == 'admin.courses' || $current_route == 'admin.course.create' || $current_route == 'admin.course.edit' || $current_route == 'admin.coupons') active showMenu @endif"> <a href="javascript:void(0);"> <span class="icon fi fi-rr-e-learning"></span> <div class="text"> <span>{{ get_phrase('Course') }}</span> </div> </a> <ul class="first-sub-menu"> <li class="first-sub-menu-title fs-14px mb-18px">{{ get_phrase('Course') }}</li> <li class="sidebar-second-li @if ($current_route == 'admin.courses' || $current_route == 'admin.course.edit') active @endif"> <a href="{{ route('admin.courses') }}">{{ get_phrase('Manage Courses') }}</a> </li> <li class="sidebar-second-li @if ($current_route == 'admin.course.create') active @endif"> <a href="{{ route('admin.course.create') }}">{{ get_phrase('Add New Course') }}</a> </li> </ul> </li> @endif </ul> </nav> </div> <script> "use strict"; document.addEventListener("DOMContentLoaded", function() { // Restore scroll position if it exists in localStorage const scrollPos = localStorage.getItem('navScrollPos'); const sidebarNavArea = document.querySelector('.sidebar-nav-area'); if (scrollPos) { sidebarNavArea.scrollTop = scrollPos; } // Ensure the active element is visible const activeElement = document.querySelector('.sidebar-nav-area .active'); if (activeElement) { const activeElementTop = activeElement.getBoundingClientRect().top; const navAreaTop = sidebarNavArea.getBoundingClientRect().top; const navAreaBottom = navAreaTop + sidebarNavArea.clientHeight; if (activeElementTop < navAreaTop || activeElementTop > navAreaBottom) { sidebarNavArea.scrollTop = activeElement.offsetTop - sidebarNavArea.offsetTop; } } // Save scroll position before page unload window.addEventListener('beforeunload', function() { localStorage.setItem('navScrollPos', sidebarNavArea.scrollTop); }); }); </script>
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings