104 lines
4.2 KiB
PHP
104 lines
4.2 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<!-- Basic Page Info -->
|
|
<meta charset="utf-8" />
|
|
<title>SIPEX</title>
|
|
|
|
<!-- Site favicon -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('vendors/images/apple-touch-icon.png') }}" />
|
|
<link rel="icon" type="image/png" href="{{ asset('img/logo-no-background.png') }}" />
|
|
<link rel="icon" type="image/png" href="{{ asset('img/logo-no-background.png') }}" />
|
|
|
|
<!-- Mobile Specific Metas -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
|
|
<!-- Google Font -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
|
|
rel="stylesheet" />
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('vendors/styles/core.css') }}" />
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('vendors/styles/icon-font.min.css') }}" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ asset('src/plugins/datatables/css/dataTables.bootstrap4.min.css') }}" />
|
|
<link rel="stylesheet" type="text/css"
|
|
href="{{ asset('src/plugins/datatables/css/responsive.bootstrap4.min.css') }}" />
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('vendors/styles/style.css') }}" />
|
|
|
|
<!-- Bootstrap CSS -->
|
|
{{-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet"> --}}
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GBZ3SGGX85"></script>
|
|
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2973766580778258"
|
|
crossorigin="anonymous"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag("js", new Date());
|
|
|
|
gtag("config", "G-GBZ3SGGX85");
|
|
</script>
|
|
<!-- Google Tag Manager -->
|
|
<script>
|
|
(function(w, d, s, l, i) {
|
|
w[l] = w[l] || [];
|
|
w[l].push({
|
|
"gtm.start": new Date().getTime(),
|
|
event: "gtm.js"
|
|
});
|
|
var f = d.getElementsByTagName(s)[0],
|
|
j = d.createElement(s),
|
|
dl = l != "dataLayer" ? "&l=" + l : "";
|
|
j.async = true;
|
|
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
|
|
f.parentNode.insertBefore(j, f);
|
|
})(window, document, "script", "dataLayer", "GTM-NXZMQSS");
|
|
</script>
|
|
<!-- End Google Tag Manager -->
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
|
|
@yield('body')
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- js -->
|
|
<script src="{{ asset('vendors/scripts/core.js') }}"></script>
|
|
<script src="{{ asset('vendors/scripts/script.min.js') }}"></script>
|
|
<script src="{{ asset('vendors/scripts/process.js') }}"></script>
|
|
<script src="{{ asset('vendors/scripts/layout-settings.js') }}"></script>
|
|
<script src="{{ asset('src/plugins/apexcharts/apexcharts.min.js') }}"></script>
|
|
{{-- <script src="{{ asset('src/plugins/datatables/js/jquery.dataTables.min.js') }}"></script>
|
|
<script src="{{ asset('src/plugins/datatables/js/dataTables.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('src/plugins/datatables/js/dataTables.responsive.min.js') }}"></script>
|
|
<script src="{{ asset('src/plugins/datatables/js/responsive.bootstrap4.min.js') }}"></script> --}}
|
|
<script src="{{ asset('vendors/scripts/dashboard.js') }}"></script>
|
|
|
|
<!-- add sweet alert js & css in footer -->
|
|
<script src="{{ asset('src/plugins/sweetalert2/sweetalert2.all.js') }}"></script>
|
|
<script src="{{ asset('src/plugins/sweetalert2/sweet-alert.init.js') }}"></script>
|
|
|
|
<!-- Bootstrap JS and Popper.js -->
|
|
{{-- <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js"></script> --}}
|
|
|
|
<!-- Google Tag Manager (noscript) -->
|
|
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NXZMQSS" height="0" width="0"
|
|
style="display: none; visibility: hidden"></iframe></noscript>
|
|
<!-- End Google Tag Manager (noscript) -->
|
|
|
|
@include('sweetalert::alert')
|
|
</body>
|
|
|
|
</html>
|