ALPHA 3.0.1a

This commit is contained in:
TheGamecraft
2018-07-13 12:41:23 -04:00
commit 51b5bc0500
1339 changed files with 151256 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
<?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 -->
@yield('content')
</div>
</div>
<!-- Including Javascripts -->
@include('layouts.admin.scripts')
<!-- Yield Custom Javascipts -->
@yield('custom_scripts')
</body>
</html>