Skip to content

Instantly share code, notes, and snippets.

@DarkGhostHunter
Created March 17, 2020 19:28
Show Gist options
  • Save DarkGhostHunter/392744a9a262e0f23a554154b8c34135 to your computer and use it in GitHub Desktop.
Save DarkGhostHunter/392744a9a262e0f23a554154b8c34135 to your computer and use it in GitHub Desktop.
Main App Layout
<!doctype html>
<html lang="{{ config('app.locale') }}">
<head>
@include('web.layout.head')
</head>
<body>
<header>
@include('web.layout.header')
</header>
<main>
@include('web.layout.main')
</main>
<footer>
@include('web.layout.footer')
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment