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.
64 lines
2.4 KiB
64 lines
2.4 KiB
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', 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', 'Admin Page')</title>
|
|
|
|
{{-- Favicons --}}
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{{ asset('soft-ui/assets/img/apple-icon.png') }}">
|
|
<link rel="icon" type="image/png" href="{{ asset('soft-ui/assets/img/favicon.png') }}">
|
|
|
|
{{-- Fonts + Icons --}}
|
|
<link href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700,800" rel="stylesheet">
|
|
<link href="{{ asset('soft-ui/assets/css/nucleo-icons.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('soft-ui/assets/css/nucleo-svg.css') }}" rel="stylesheet">
|
|
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
|
|
|
|
{{-- CSS chính --}}
|
|
<link id="pagestyle" href="{{ asset('soft-ui/assets/css/soft-ui-dashboard.css?v=1.1.0') }}" rel="stylesheet">
|
|
|
|
{{-- Livewire --}}
|
|
@livewireStyles
|
|
|
|
{{-- Page-specific CSS --}}
|
|
@stack('styles')
|
|
</head>
|
|
|
|
<body class="g-sidenav-show bg-gray-100">
|
|
{{-- Sidebar --}}
|
|
@include('layouts.partials.sidebar')
|
|
|
|
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg">
|
|
{{-- Navbar --}}
|
|
@include('layouts.partials.navbar')
|
|
|
|
<div class="container-fluid py-4">
|
|
{{-- Nội dung chính: Livewire sẽ render vào đây --}}
|
|
{{ $slot }}
|
|
|
|
{{-- Footer --}}
|
|
@include('layouts.partials.footer')
|
|
</div>
|
|
</main>
|
|
|
|
{{-- JS core --}}
|
|
<script src="{{ asset('soft-ui/assets/js/core/popper.min.js') }}"></script>
|
|
<script src="{{ asset('soft-ui/assets/js/core/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('soft-ui/assets/js/plugins/perfect-scrollbar.min.js') }}"></script>
|
|
<script src="{{ asset('soft-ui/assets/js/plugins/smooth-scrollbar.min.js') }}"></script>
|
|
<script src="{{ asset('soft-ui/assets/js/plugins/chartjs.min.js') }}"></script>
|
|
<script src="{{ asset('soft-ui/assets/js/soft-ui-dashboard.min.js?v=1.1.0') }}"></script>
|
|
|
|
{{-- Nepcha Analytics --}}
|
|
<script defer data-site="YOUR_DOMAIN_HERE" src="https://api.nepcha.com/js/nepcha-analytics.js"></script>
|
|
|
|
{{-- Livewire --}}
|
|
@livewireScripts
|
|
|
|
{{-- Page-specific JS --}}
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|
|
|