Files
portal/resources/views/layouts/base.blade.php
T
2020-08-12 04:16:41 +08:00

13 lines
304 B
PHP

<!doctype html>
<html lang="en">
<head>
@include('vendor/head')
</head>
<body class="fixed-header horizontal-menu horizontal-app-menu bg-master-lightest">
<div id="app" style="min-height: 100%;">
@yield('content')
</div>
@include('vendor/js')
@stack('scripts')
</body>
</html>