mastercut/resources/views/layouts/admin.blade.php
2024-11-20 14:56:37 +07:00

30 lines
879 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
@include('partials.admin._meta')
@include('partials.admin._css')
@notifyCss
</head>
<body onload="startTime()">
@include('notify::components.notify')
@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')
@notifyJs
</body>
</html>