83 lines
2.8 KiB
PHP
83 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="auto">
|
|
<head>
|
|
<!-- Scripts -->
|
|
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
|
@include('layouts.head')
|
|
</head>
|
|
|
|
|
|
<!-- Body of dashboard - inside is all content-->
|
|
<body class="bg-body-tertiary">
|
|
<!-- Include the symbols for svg drawing -->
|
|
@include('layouts.svg')
|
|
<!-- End svg drawing symbols -->
|
|
<!-- Start navbar -->
|
|
@include('layouts.upper-navbar')
|
|
<!-- end navbar -->
|
|
<!-- Sidebar menu -->
|
|
@include('layouts.sidebar')
|
|
<!-- End aside -->
|
|
|
|
<!-- Content of the main body - heres the main content like graph, tables, etc... -->
|
|
<main class="col-sm-10 bg-body-tertiary" id="main">
|
|
<div class="container-fluid">
|
|
<div class="row"> <!-- This section creates the links at the top separated by a / -->
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item inactive" aria-current="#">Overview</li>
|
|
<li class="breadcrumb-item active" aria-current="/dashboard">Dashboard</li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
<!-- This section yields to the content -->
|
|
@yield('content')
|
|
|
|
<!-- Footer for end section -->
|
|
<div class="row">
|
|
<footer class="pt-5 d-flex justify-content-between">
|
|
<p class="col-md-4 mb-0 text-body-secondary">© Alliance-Services</p>
|
|
<ul class="nav col-md-4 justify-content-end">
|
|
<li class="nav-item"><a href="/dashboard" class="nav-link px-2 text-body-secondary">Home</a></li>
|
|
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">FAQs</a></li>
|
|
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">About</a></li>
|
|
</ul>
|
|
</footer>
|
|
</div>
|
|
<!-- End footer -->
|
|
</div>
|
|
</main>
|
|
<!-- end main -->
|
|
|
|
<!-- offcanvas - heres is a copy of aside and must be the same as navbar section -->
|
|
<!-- End offcanvas (Put back if needed later. -->
|
|
|
|
<!-- ChartsJS -->
|
|
<script src="https://cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.3.2/dist/chart.umd.js"
|
|
integrity="sha384-eI7PSr3L1XLISH8JdDII5YN/njoSsxfbrkCTnJrzXt+ENP5MOVBxD+l6sEG4zoLp"
|
|
crossorigin="anonymous"></script>
|
|
<!-- Github buttons -->
|
|
<script async defer src="js/github-buttons.js"></script>
|
|
<script src="js/dashboard.js"></script>
|
|
<script>
|
|
new Chartist.Line('#traffic-chart', {
|
|
labels: ['January', 'Februrary', 'March', 'April', 'May', 'June'],
|
|
series: [
|
|
[23000, 25000, 19000, 34000, 56000, 64000]
|
|
]
|
|
}, {
|
|
low: 0,
|
|
showArea: true
|
|
});
|
|
</script>
|
|
|
|
<script>
|
|
function changeclass() {
|
|
$("#main").toggleClass('col-sm-10 col-sm-12');
|
|
}
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |