layout.blade.php 803 B

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="renderer" content="webkit">
  7. <meta name="referrer" content="always">
  8. <title>{{ $seoData['title'] ?? '' }}</title>
  9. <meta name="keywords" content="{{ $seoData['keywords'] ?? '' }}" />
  10. <meta name="description" content="{{ $seoData['description'] ?? '' }}" />
  11. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  12. <link rel="icon" href="/favicon.ico">
  13. @section('head_css')
  14. @show
  15. </head>
  16. @section('body')
  17. <body>
  18. @yield('content')
  19. @section('footer')
  20. @show
  21. @section('plugins_js')
  22. @show
  23. @section('footer_js')
  24. @show
  25. </body>
  26. @show
  27. </html>