Files
shipping-portal/resources/views/layouts/base.blade.php
T
2024-06-09 21:25:36 +08:00

13 lines
297 B
PHP

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