PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
admin
/
layouts
/
Editing: app.blade.php
<!DOCTYPE html> <html lang="{{LaravelLocalization::getCurrentLocale()}}" @if(LaravelLocalization::getCurrentLocaleDirection() == "rtl") direction="rtl" dir="rtl" style="direction: rtl" @endif> <head> <title>{{gs('title')}}</title> <meta charset="utf-8"/> <meta name="description" content="{{gs('description')}}"/> <meta name="keywords" content="{{gs('description')}}"/> <meta name="csrf-token" content="{{ csrf_token() }}"> <meta name="viewport" content="width=device-width, initial-scale=1"/> @include("admin.partials.styles") </head> <body id="kt_app_body" @if(LaravelLocalization::getCurrentLocaleDirection() == "rtl") direction="rtl" @endif data-kt-app-layout="light-sidebar" data-kt-app-header-fixed="true" data-kt-app-sidebar-enabled="true" data-kt-app-sidebar-fixed="true" data-kt-app-sidebar-hoverable="true" data-kt-app-sidebar-push-header="true" data-kt-app-sidebar-push-toolbar="true" data-kt-app-sidebar-push-footer="true" data-kt-app-toolbar-enabled="true" class="app-default"> <script> let defaultThemeMode = "dark"; let themeMode; if (document.documentElement) { if (document.documentElement.hasAttribute("data-bs-theme-mode")) { themeMode = document.documentElement.getAttribute("data-bs-theme-mode"); } else { if (localStorage.getItem("data-bs-theme") !== null) { themeMode = localStorage.getItem("data-bs-theme"); } else { themeMode = defaultThemeMode; } } if (themeMode === "system") { themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"; } document.documentElement.setAttribute("data-bs-theme", themeMode); } </script> <div class="d-flex flex-column flex-root app-root" id="kt_app_root"> <div class="app-page flex-column flex-column-fluid" id="kt_app_page"> <x-backend.header /> <div class="app-wrapper flex-column flex-row-fluid" id="kt_app_wrapper"> <x-backend.aside :links="\App\Layouts\AdminAside::links()"/> <div class="app-main flex-column flex-row-fluid" id="kt_app_main"> <div class="d-flex flex-column flex-column-fluid"> <div id="kt_app_content" class="app-content flex-column-fluid my-6"> <div id="kt_app_content_container" class="app-container container-xxl"> @yield("content") </div> </div> </div> <div id="kt_app_footer" class="app-footer"> <div class="app-container bg-white container-fluid d-flex flex-column flex-md-row flex-center flex-md-stack py-3"> <div class="text-dark order-2 order-md-1"> <span class="text-muted fw-semibold me-1">{{date("Y")}} ©</span> <a href="https://{{config('app.url')}}" target="_blank" class="text-gray-800 text-hover-primary">{{config('app.url')}}</a> </div> <ul class="menu menu-gray-600 menu-hover-primary fw-semibold order-1"> <li class="menu-item"><a href="{{route('admin.notifications.index')}}" class="menu-link px-2">{{__("Notifications")}}</a></li> <li class="menu-item"><a href="{{route('admin.profile.index')}}" class="menu-link px-2">{{__("My Profile")}}</a></li> </ul> </div> </div> </div> </div> </div> </div> <div id="kt_scrolltop" class="scrolltop" data-kt-scrolltop="true"> <i class="ki-duotone ki-arrow-up"><span class="path1"></span><span class="path2"></span></i> </div> <form action="{{route('admin.logout')}}" id="admin_logout_form" method="post"> @csrf </form> @include("global.index-modal") @include("admin.partials.scripts") </body> </html>
SAVE
CANCEL