app.blade.php 348 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{{ $title ?? 'Page Title' }}</title>
  7. @vite('resources/css/app.css')
  8. </head>
  9. <body>
  10. {{ $slot }}
  11. @vite('resources/js/app.js')
  12. </body>
  13. </html>