app.blade.php 734 B

123456789101112131415161718192021222324252627
  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">
  6. <!-- CSRF Token -->
  7. <meta name="csrf-token" content="{{ csrf_token() }}">
  8. <title>{{ config('app.name', 'Laravel') }}</title>
  9. <!-- Scripts -->
  10. <script src="{{ asset('js/app.js') }}" defer></script>
  11. <!-- Fonts -->
  12. <link rel="dns-prefetch" href="//fonts.gstatic.com">
  13. <link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
  14. <!-- Styles -->
  15. <link href="{{ asset('css/app.css') }}" rel="stylesheet">
  16. </head>
  17. <body>
  18. <div id="app">
  19. @yield('content')
  20. </div>
  21. </body>
  22. </html>