89 lines
3.0 KiB
PHP
89 lines
3.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"
|
|
name="viewport">
|
|
<title>@yield('title')</title>
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.7/css/dataTables.dataTables.css" />
|
|
<!-- General CSS Files -->
|
|
<link rel="stylesheet"
|
|
href="{{ asset('library/bootstrap/dist/css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
|
|
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer" />
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet" />
|
|
|
|
@stack('style')
|
|
|
|
<!-- Template CSS -->
|
|
<link rel="stylesheet"
|
|
href="{{ asset('css/style.css') }}">
|
|
<link rel="stylesheet"
|
|
href="{{ asset('css/components.css') }}">
|
|
|
|
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
|
|
<!-- <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> -->
|
|
|
|
<script src="https://cdn.datatables.net/2.0.7/js/dataTables.js"></script>
|
|
|
|
<!-- Start GA -->
|
|
<script async
|
|
src="https://www.googletagmanager.com/gtag/js?id=UA-94034622-3"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'UA-94034622-3');
|
|
</script>
|
|
<!-- END GA -->
|
|
</head>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div class="main-wrapper">
|
|
<!-- Header -->
|
|
@include('components.header')
|
|
|
|
<!-- Sidebar -->
|
|
@include('components.sidebar')
|
|
|
|
<!-- Content -->
|
|
@yield('main')
|
|
|
|
<!-- Footer -->
|
|
@include('components.footer')
|
|
</div>
|
|
</div>
|
|
<!-- General JS Scripts -->
|
|
<script src="{{ asset('library/jquery/dist/jquery.min.js') }}"></script>
|
|
<script src="{{ asset('library/popper.js/dist/umd/popper.js') }}"></script>
|
|
<script src="{{ asset('library/tooltip.js/dist/umd/tooltip.js') }}"></script>
|
|
<script src="{{ asset('library/bootstrap/dist/js/bootstrap.min.js') }}"></script>
|
|
<script src="{{ asset('library/jquery.nicescroll/dist/jquery.nicescroll.min.js') }}"></script>
|
|
<script src="{{ asset('library/moment/min/moment.min.js') }}"></script>
|
|
<script src="{{ asset('js/stisla.js') }}"></script>
|
|
|
|
@stack('scripts')
|
|
|
|
<!-- Template JS File -->
|
|
<script src="{{ asset('js/scripts.js') }}"></script>
|
|
<script src="{{ asset('js/custom.js') }}"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
|
|
</body>
|
|
<script>
|
|
$(document).ready(function(){
|
|
$('.select2').select2();
|
|
})
|
|
|
|
</script>
|
|
</html>
|