40 lines
1.0 KiB
PHP
40 lines
1.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">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
|
|
<title>@yield('title')</title>
|
|
@include('layouts.head')
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div class="main-wrapper">
|
|
<div class="navbar-bg"></div>
|
|
{{-- Navbar --}}
|
|
@include('layouts.navbar')
|
|
{{-- Sidebar --}}
|
|
@include('layouts.sidebar')
|
|
<!-- Main Content -->
|
|
<div class="main-content">
|
|
<section class="section">
|
|
<div class="section-header">
|
|
@yield('content-header')
|
|
</div>
|
|
<div class="section-body">
|
|
@yield('content-body')
|
|
</div>
|
|
</section>
|
|
@yield("modal")
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{-- Script Js --}}
|
|
@include('layouts.footer-script')
|
|
{{-- SweetAlert2 --}}
|
|
@include('sweetalert::alert')
|
|
</body>
|
|
|
|
</html> |