mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
50 lines
794 B
PHP
50 lines
794 B
PHP
<?php
|
|
|
|
use App\Notifications\Alert;
|
|
|
|
?>
|
|
<!doctype html>
|
|
<head>
|
|
|
|
<!-- Including Head -->
|
|
|
|
@include('layouts.admin.head')
|
|
|
|
</head>
|
|
<body>
|
|
<!-- Including Left Panel -->
|
|
|
|
@include('layouts.admin.sidebar')
|
|
|
|
<div id="right-panel" class="right-panel">
|
|
|
|
<!-- Including Header-->
|
|
|
|
@include('layouts.admin.header')
|
|
|
|
<!-- Yield Breadcrumb -->
|
|
|
|
@yield('breadcrumb')
|
|
|
|
<div class="content mt-3">
|
|
|
|
<!-- Yield Content -->
|
|
|
|
@include('layouts.admin.alert')
|
|
|
|
@yield('content')
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Including Javascripts -->
|
|
|
|
@include('layouts.admin.scripts')
|
|
|
|
<!-- Yield Custom Javascipts -->
|
|
|
|
@yield('custom_scripts')
|
|
|
|
</body>
|
|
</html>
|