113 lines
4.3 KiB
PHP
113 lines
4.3 KiB
PHP
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="description" content="Responsive HTML Admin Dashboard Template based on Bootstrap 5">
|
|
<meta name="author" content="NobleUI">
|
|
<meta name="keywords" content="nobleui, bootstrap, bootstrap 5, bootstrap5, admin, dashboard, template, responsive, css, sass, html, theme, front-end, ui kit, web">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>@yield('title')</title>
|
|
|
|
<!-- color-modes:js -->
|
|
<script src="{{ asset('assets/js/color-modes.js') }}"></script>
|
|
<!-- endinject -->
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" rel="stylesheet">
|
|
<!-- End fonts -->
|
|
|
|
<!-- core:css -->
|
|
<link rel="stylesheet" href="{{ asset('assets/vendors/core/core.css') }}">
|
|
<!-- endinject -->
|
|
|
|
<!-- Plugin css for this page -->
|
|
<link rel="stylesheet" href="{{ asset('assets/vendors/sweetalert2/sweetalert2.min.css') }}">
|
|
@yield('styles')
|
|
<!-- End plugin css for this page -->
|
|
|
|
<!-- inject:css -->
|
|
<link rel="stylesheet" href="{{ asset('assets/vendors/mdi/css/materialdesignicons.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/fonts/feather-font/css/iconfont.css') }}">
|
|
<!-- endinject -->
|
|
|
|
<!-- Layout styles -->
|
|
<link rel="stylesheet" href="{{ asset('assets/css/demo2/style.css') }}">
|
|
<!-- End layout styles -->
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}">
|
|
<link rel="manifest" href="{{ asset('site.webmanifest') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Begin page -->
|
|
<div class="main-wrapper">
|
|
|
|
<!-- ========== Left Sidebar Start ========== -->
|
|
@include('layouts.navbar')
|
|
<!-- Left Sidebar End -->
|
|
|
|
<!-- ============================================================== -->
|
|
<!-- Start right Content here -->
|
|
<!-- ============================================================== -->
|
|
<div class="page-wrapper">
|
|
<!-- End topbar -->
|
|
|
|
@yield('content')
|
|
<!-- End Page-content -->
|
|
|
|
<footer class="footer border-top">
|
|
<div class="container d-flex flex-row align-items-center justify-content-between py-3 small">
|
|
<p class="text-secondary mb-1 mb-md-0">Copyright © 2024 <a href="https://www.nobleui.com" target="_blank">NobleUI</a>.</p>
|
|
<p class="text-secondary">Handcrafted With <i class="mb-1 text-primary ms-1 icon-sm" data-feather="heart"></i></p>
|
|
</div>
|
|
</footer>
|
|
|
|
</div>
|
|
<!-- end main content-->
|
|
|
|
</div>
|
|
<!-- END layout-wrapper -->
|
|
@include('layouts.alert')
|
|
<!-- JAVASCRIPT -->
|
|
<!-- core:js -->
|
|
<script src="{{ asset('assets/vendors/core/core.js') }}"></script>
|
|
<!-- endinject -->
|
|
|
|
<!-- Plugin js for this page -->
|
|
<script src="{{ asset('assets/vendors/jquery/jquery.min.js') }}"></script>
|
|
<!-- End plugin js for this page -->
|
|
|
|
<!-- inject:js -->
|
|
<script src="{{ asset('assets/vendors/sweetalert2/sweetalert2.min.js') }}"></script>
|
|
<script src="{{ asset('assets/vendors/feather-icons/feather.min.js') }}"></script>
|
|
<script src="{{ asset('assets/js/app.js') }}"></script>
|
|
<!-- endinject -->
|
|
|
|
<!-- Custom js for this page -->
|
|
<script>
|
|
var n = Swal.mixin({
|
|
customClass:{
|
|
confirmButton:"btn btn-label-info btn-wide mx-1",
|
|
denyButton:"btn btn-label-secondary btn-wide mx-1",
|
|
cancelButton:"btn btn-label-danger btn-wide mx-1"
|
|
},
|
|
buttonsStyling:!1
|
|
});
|
|
</script>
|
|
@yield('scripts')
|
|
<!-- End custom js for this page -->
|
|
|
|
</body>
|
|
|
|
</html>
|