mastercut/resources/views/layouts/admin.blade.php

27 lines
796 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
@include('partials.admin._meta')
@include('partials.admin._css')
</head>
<body onload="startTime()">
@include('partials.admin._loader')
<div class="tap-top"><i data-feather="chevrons-up"></i></div>
<div class="page-wrapper compact-wrapper" id="pageWrapper">
@include('partials.admin._header')
<div class="page-body-wrapper">
@include('partials.admin._sidebar')
<div class="page-body">
@include('partials.admin._page-title')
@yield('app')
</div>
@include('partials.admin._footer')
</div>
</div>
@include('partials.admin._js')
</body>
</html>