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.
49 lines
1.5 KiB
49 lines
1.5 KiB
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
{!! SEO::generate() !!}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<link rel="icon" href="{{ asset_static($favicon ?? 'images/logo.svg') }}" type="image/x-icon">
|
|
<link rel="shortcut icon" href="{{ asset_static($favicon ?? 'images/logo.svg') }}" type="image/x-icon">
|
|
@webmasterMeta
|
|
@gtmHead
|
|
|
|
@livewireStyles
|
|
@stack('styles')
|
|
@vite(['resources/js/plugin/jquery.js', 'resources/js/bootstrap.js', 'resources/js/plugin/sweetalert2.js'])
|
|
@stack('scripts')
|
|
@vite(['resources/scss/app.scss', 'resources/js/alpinejs.js'])
|
|
</head>
|
|
|
|
<body>
|
|
@gtmBody
|
|
|
|
<x-layouts.nav.sidebar />
|
|
|
|
<div class="wrapper d-flex flex-column min-vh-100">
|
|
<x-layouts.nav.topbar />
|
|
<div class="body flex-grow-1 px-4 py-3">
|
|
<div class="container-fluid">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
<footer class="footer px-4">
|
|
<div>
|
|
<a href="https://coreui.io">CoreUI</a>
|
|
<a href="https://coreui.io/product/free-bootstrap-admin-template/">Bootstrap Admin Template</a>
|
|
© 2026 creativeLabs.
|
|
</div>
|
|
<div class="ms-auto">
|
|
Powered by
|
|
<a href="https://coreui.io/bootstrap/docs/">CoreUI UI Components</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
@livewireScriptConfig
|
|
@stack('page-scripts')
|
|
</body>
|
|
</html>
|
|
|