1234567891011121314151617181920212223
  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, maximum-scale=1.0" />
  6. <link
  7. rel="shortcut icon"
  8. type="image/x-icon"
  9. href="{{ asset('favicon.png') }}"
  10. />
  11. @routes
  12. <script src="{{ mix('/js/vue.js') }}" defer></script>
  13. @inertiaHead
  14. </head>
  15. <body>
  16. @inertia
  17. </body>
  18. </html>