Skip to content

Instantly share code, notes, and snippets.

@tuto1902
Created August 25, 2022 22:36
Show Gist options
  • Save tuto1902/b62d235944cbe9f4a644908ef2bee19b to your computer and use it in GitHub Desktop.
Save tuto1902/b62d235944cbe9f4a644908ef2bee19b to your computer and use it in GitHub Desktop.
App Layout File
<!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