Files
Global-Jain/resources/views/backend/layouts/app.blade.php
2025-11-05 10:37:10 +05:30

194 lines
8.7 KiB
PHP

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title')</title>
<meta name="description" content="@yield('meta_description', app_name())">
<meta name="author" content="@yield('meta_author', app_name())">
@yield('meta')
@stack('before-styles')
<!-- Check if the language is set to RTL, so apply the RTL layouts -->
<!-- Otherwise apply the normal LTR layouts -->
<link rel="shortcut icon" href="{{asset('public//img/favicon.ico')}}" type="image/x-icon" />
<link rel="apple-touch-icon" href="{{asset('public//img/favicon.ico')}}" />
<link rel="apple-touch-icon-precomposed" href="{{asset('public//img/favicon.ico')}}" />
<!--begin::Fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" />
<!--end::Fonts-->
<link href="{{ asset('public/plugins/custom/prismjs/prismjs.bundle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/css/style.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/css/backend/custom.css') }}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<!--begin::Global Theme Styles(used by all pages)-->
<link href="{{ asset('public/css/themes/layout/header/base/light.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/css/themes/layout/header/menu/light.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/css/themes/layout/brand/dark.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('public/css/themes/layout/aside/dark.css') }}" rel="stylesheet" type="text/css" />
<!--end::Global Theme Styles-->
@stack('after-styles')
</head>
<body id="kt_body" class="header-fixed header-mobile-fixed subheader-enabled subheader-fixed aside-enabled aside-fixed aside-minimize-hoverable page-loading">
<!--begin::Main-->
<!--begin::Header Mobile-->
<div id="kt_header_mobile" class="header-mobile align-items-center header-mobile-fixed">
<!--begin::Logo-->
<a href="{{ route('admin.dashboard') }}">
<img alt="Logo" src="{{ asset('public/images/logos/logo.png') }}" />
</a>
<!--end::Logo-->
<!--begin::Toolbar-->
<div class="d-flex align-items-center">
<!--begin::Aside Mobile Toggle-->
<button class="btn p-0 burger-icon burger-icon-left" id="kt_aside_mobile_toggle">
<span></span>
</button>
<!--end::Aside Mobile Toggle-->
<!--begin::Header Menu Mobile Toggle-->
<button class="btn p-0 burger-icon ml-4" id="kt_header_mobile_toggle">
<span></span>
</button>
<!--end::Header Menu Mobile Toggle-->
<!--begin::Topbar Mobile Toggle-->
<button class="btn btn-hover-text-primary p-0 ml-2" id="kt_header_mobile_topbar_toggle">
<span class="svg-icon svg-icon-xl">
<!--begin::Svg Icon | path:assets/media/svg/icons/General/User.svg-->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon points="0 0 24 0 24 24 0 24" />
<path d="M12,11 C9.790861,11 8,9.209139 8,7 C8,4.790861 9.790861,3 12,3 C14.209139,3 16,4.790861 16,7 C16,9.209139 14.209139,11 12,11 Z" fill="#000000" fill-rule="nonzero" opacity="0.3" />
<path d="M3.00065168,20.1992055 C3.38825852,15.4265159 7.26191235,13 11.9833413,13 C16.7712164,13 20.7048837,15.2931929 20.9979143,20.2 C21.0095879,20.3954741 20.9979143,21 20.2466999,21 C16.541124,21 11.0347247,21 3.72750223,21 C3.47671215,21 2.97953825,20.45918 3.00065168,20.1992055 Z" fill="#000000" fill-rule="nonzero" />
</g>
</svg>
<!--end::Svg Icon-->
</span>
</button>
<!--end::Topbar Mobile Toggle-->
</div>
<!--end::Toolbar-->
</div>
<!--end::Header Mobile-->
<div class="d-flex flex-column flex-root">
<!--begin::Page-->
<div class="d-flex flex-row flex-column-fluid page">
@include('backend.includes.sidebar')
<!--begin::Wrapper-->
<div class="d-flex flex-column flex-row-fluid wrapper" id="kt_wrapper">
@yield('breadcrumb')
@include('backend.includes.header')
<!--begin::Content-->
<div class="content d-flex flex-column flex-column-fluid" id="kt_content">
@yield('content')
</div>
<!--end::Content-->
@include('backend.includes.footer')
</div>
<!--end::Wrapper-->
</div>
<!--end::Page-->
</div>
<!--end::Main-->
<!-- Scripts -->
@yield('before-scripts')
<script>
var HOST_URL = '{{ env("APP_URL")."admin" }}';
</script>
<!--begin::Global Config(global config for global JS scripts)-->
<script>
var KTAppSettings = {
"breakpoints": {
"sm": 576,
"md": 768,
"lg": 992,
"xl": 1200,
"xxl": 1200
},
"colors": {
"theme": {
"base": {
"white": "#ffffff",
"primary": "#3699FF",
"secondary": "#E5EAEE",
"success": "#1BC5BD",
"info": "#8950FC",
"warning": "#FFA800",
"danger": "#F64E60",
"light": "#F3F6F9",
"dark": "#212121"
},
"light": {
"white": "#ffffff",
"primary": "#E1F0FF",
"secondary": "#ECF0F3",
"success": "#C9F7F5",
"info": "#EEE5FF",
"warning": "#FFF4DE",
"danger": "#FFE2E5",
"light": "#F3F6F9",
"dark": "#D6D6E0"
},
"inverse": {
"white": "#ffffff",
"primary": "#ffffff",
"secondary": "#212121",
"success": "#ffffff",
"info": "#ffffff",
"warning": "#ffffff",
"danger": "#ffffff",
"light": "#464E5F",
"dark": "#ffffff"
}
},
"gray": {
"gray-100": "#F3F6F9",
"gray-200": "#ECF0F3",
"gray-300": "#E5EAEE",
"gray-400": "#D6D6E0",
"gray-500": "#B5B5C3",
"gray-600": "#80808F",
"gray-700": "#464E5F",
"gray-800": "#1B283F",
"gray-900": "#212121"
}
},
"font-family": "Poppins"
};
</script>
<!--end::Global Config-->
<script src="{{ asset('public/plugins/global/plugins.bundle.js') }}"></script>
<script src="{{ asset('public/plugins/custom/prismjs/prismjs.bundle.js') }}"></script>
<script src="{{ asset('public/js/scripts.bundle.js') }}"></script>
<script src="{{ asset('public/js/pages/widgets.js') }}"></script>
<script src="{{ asset('public/js/pages/crud/ktdatatable/base/data-local.js') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-datepicker.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-datetimepicker.js?v=7.2.8') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-timepicker.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-daterangepicker.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-select.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/select2.js?v=7.0.4') }}"></script>
{{-- <script src="{{ asset('public/js/pages/crud/forms/widgets/tagify.js?v=7.0.4') }}"></script> --}}
<script src="{{ asset('public/js/pages/crud/forms/widgets/bootstrap-touchspin.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/ion-range-slider.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/pages/crud/forms/widgets/form-repeater.js?v=7.0.4') }}"></script>
<script src="{{ asset('public/js/custom.js') }}"></script>
@yield('after-scripts')
@include('includes.partials.flash-messages')
@yield('popup')
</body>
</html>