index.blade.php 663 B

1234567891011121314151617181920212223242526272829303132
  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. <title>{{$title}}</title>
  7. <style>
  8. body {
  9. line-height: 30px;
  10. /*color: #fff;*/
  11. }
  12. span.code {
  13. color: #060709;
  14. font-size: 20px;
  15. font-weight: bold;
  16. padding: 10px 0;
  17. }
  18. .logo img {
  19. width: 120px;
  20. height: 60px;
  21. display: inline-block;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="mail">
  27. {!! $template !!}
  28. </div>
  29. </body>