Created
March 17, 2020 19:28
-
-
Save DarkGhostHunter/392744a9a262e0f23a554154b8c34135 to your computer and use it in GitHub Desktop.
Main App Layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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