79 lines
3.5 KiB
PHP
79 lines
3.5 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<link href="{{ asset('template/img/logo/logoesi.png') }}" rel="icon">
|
|
<title>@yield('title')</title>
|
|
<link href="{{ asset('template/vendor/fontawesome-free/css/all.min.css') }}" rel="stylesheet" type="text/css">
|
|
<link href="{{ asset('template/vendor/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet" type="text/css">
|
|
<link href="{{ asset('template/css/ruang-admin.min.css') }}" rel="stylesheet">
|
|
{{-- <link href="{{ asset('vendor/datatables/dataTables.bootstrap4.min.css') }}" rel="stylesheet"> --}}
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
<div id="wrapper">
|
|
<!-- Sidebar -->
|
|
@include('partials.sidebar')
|
|
<!-- Sidebar -->
|
|
<div id="content-wrapper" class="d-flex flex-column">
|
|
<div id="content">
|
|
<!-- TopBar -->
|
|
@include('partials.header')
|
|
<!-- Topbar -->
|
|
|
|
<!-- Container Fluid-->
|
|
<div class="container-fluid" id="container-wrapper">
|
|
|
|
<div class="row mb-3">
|
|
@yield('content')
|
|
<!-- Modal Logout -->
|
|
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog"
|
|
aria-labelledby="exampleModalLabelLogout" aria-hidden="true">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLabelLogout">Ohh No!</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<p>Are you sure you want to logout?</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-outline-primary" data-dismiss="modal">Cancel</button>
|
|
<form action="{{ route('logout') }}" method="POST" style="display: inline;">
|
|
@csrf
|
|
<button type="submit" class="btn btn-primary">Logout</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!---Container Fluid-->
|
|
<!-- Footer -->
|
|
@include('partials.footer')
|
|
<!-- Footer -->
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Scroll to top -->
|
|
<a class="scroll-to-top rounded" href="#page-top">
|
|
<i class="fas fa-angle-up"></i>
|
|
</a>
|
|
|
|
<!-- Script -->
|
|
@include('partials.scripts')
|
|
@stack('scripts')
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|