0% found this document useful (0 votes)
27 views2 pages

4

The document is the HTML for an administration dashboard. It includes links to CSS, JS, and other files needed for the dashboard layout and functionality. Headers, footers and placeholders for dynamic content are defined.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
27 views2 pages

4

The document is the HTML for an administration dashboard. It includes links to CSS, JS, and other files needed for the dashboard layout and functionality. Headers, footers and placeholders for dynamic content are defined.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>TE-SEA :: ADMINISTRATION DASHBOARD </title>

<!-- Styles CSS -->


<link href="{{ asset('css/styles.css') }}" rel="stylesheet">
<!-- Ajouter le script html2PDF -->
<link href="https://www.jqueryscript.net/css/jquerysctipttop.css"
rel="stylesheet" type="text/css">
<script src="{{ asset('js/html2pdf.bundle.min.js') }}"></script>
<!-- Jquery Custom -->
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- Bootstrap Icons CSS -->
<link href="{{ asset('css/bootstrap-icons/bootstrap-icons.css') }}"
rel="stylesheet">

<!-- Bootstrap DatePicker CSS -->


<link href="{{ asset('css/bootstrap-datepicker.css') }}" rel="stylesheet">

<link rel="shortcut icon" href="{{ asset('vendors/img/svg/logo.svg') }}"


type="image/x-icon">
<!----css3---->
<link rel="stylesheet" href="{{ asset('vendors/css/style.min.css') }}">
<link rel="stylesheet" href="{{ asset('vendors/css/styles.css') }}">

<link rel="stylesheet" href="{{ asset('vendors/css/button.css') }}">


<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/6.5.1/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/bootstrap-
table.min.css" rel="stylesheet">

<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/bootstrap-
table.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/extensions/filter-
control/bootstrap-table-filter-control.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>

<body>

<div class="layer"></div>
<!-- ! Body -->
<a class="skip-link sr-only" href="#skip-target">Skip to content</a>
<div class="page-flex">

@include('dashboardadmin.layouts.partial.sidebar')

<div class="main-wrapper">
@include('dashboardadmin.layouts.partial.navbar')
<main class="main users chart-page" id="skip-target">

@yield('content')

</main>

<footer class="footer">
<div class="container footer--flex">
<div class="footer-start">
<p>&copy; <script>
document.write(new Date().getFullYear());
</script> TE-SEA - <a href="#" target="_blank"
rel="noopener noreferrer">te-sea.cm</a></p>
</div>
</div>
</footer>

</div>
</div>

<script src="{{ asset('vendors/plugins/feather.min.js') }}"></script>


<script src="{{ asset('vendors/js/script.js') }}"></script>
<script src="{{ asset('vendors/plugins/chart.min.js') }}"></script>
<script src="https://cdn.tailwindcss.com"></script>
<script>
/*
Please consider that the JS part isn't production ready at all, I just code it to
show the concept of merging filters and titles together !
V1.3 By Prakhar Srivastava
*/
function checkval(){1==$("tbody tr:visible").length&&"No result found"==$("tbody
tr:visible td").html()?$("#rowcount").html("0"):$("#rowcount").html($
("tr:visible").length-1)}$(document).ready(function(){$("#rowcount").html($
(".filterable tr").length-1),$(".filterable .btn-filter").click(function(){var t=$
(this).parents(".filterable"),e=t.find(".filters input"),l=t.find(".table
tbody");1==e.prop("disabled")?(e.prop("disabled",!1),e.first().focus()):
(e.val("").prop("disabled",!0),l.find(".no-result").remove(),l.find("tr").show()),$
("#rowcount").html($(".filterable tr").length-1)}),$(".filterable .filters
input").keyup(function(t){if("9"!=(t.keyCode||t.which)){var e=$
(this),l=e.val().toLowerCase(),n=e.parents(".filterable"),i=n.find(".filters
th").index(e.parents("th")),r=n.find(".table"),o=r.find("tbody
tr"),d=o.filter(function(){return-1===$
(this).find("td").eq(i).text().toLowerCase().indexOf(l)});r.find("tbody .no-
result").remove(),o.show(),d.hide(),d.length===o.length&&r.find("tbody").prepend($
('<tr class="no-result text-center"><td colspan="'+r.find(".filters
th").length+'">No result found</td></tr>'))}$("#rowcount").html($
("tr:visible").length-1),checkval()})});

</script>

</body>

</html>

You might also like