Files
echoscoop/resources/views/front/layouts/app.blade.php
2023-09-21 23:09:15 +08:00

16 lines
305 B
PHP

<!DOCTYPE html>
<html class="" lang="en">
@include('front.layouts.partials.head')
<body>
@include('googletagmanager::body')
<div id="app">
@include('front.layouts.partials.nav')
<main>
@yield('content')
</main>
@include('front.layouts.partials.footer')
</div>
</body>
</html>