mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
23 lines
617 B
PHP
23 lines
617 B
PHP
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
@include('vendor/head')
|
|
</head>
|
|
<body class="horizontal-menu horizontal-app-menu bg-white overflow-hidden">
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SP04J05142"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-SP04J05142');
|
|
</script>
|
|
<!-- End Google Tag Manager -->
|
|
<div id="app" style="min-height: 100%;">
|
|
@yield('content')
|
|
</div>
|
|
@include('vendor/js')
|
|
@stack('scripts')
|
|
</body>
|
|
</html> |