Created
August 25, 2022 22:36
-
-
Save tuto1902/b62d235944cbe9f4a644908ef2bee19b to your computer and use it in GitHub Desktop.
App Layout File
This file contains hidden or 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="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>{{ config('app.name') }}</title> | |
@vite(['resources/css/app.css', 'resources/js/app.js']) | |
</head> | |
<body class="bg-gray-100"> | |
<div class="container mx-auto px-4"> | |
{{ $slot }} | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment