app.blade.php 409B

1234567891011121314151617181920
  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 href="{{ mix('/css/app.css') }}" rel="stylesheet" />
  7. @routes
  8. <script src="{{ mix('/js/vue.js') }}" defer></script>
  9. @inertiaHead
  10. </head>
  11. <body>
  12. @inertia
  13. </body>
  14. </html>