index.blade.php 761 B

12345678910111213141516171819202122232425262728293031323334353637
  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. @if ($logo)
  28. <div class="logo">
  29. <img src="{{$logo}}" alt="">
  30. </div>
  31. @endif
  32. {!! $template !!}
  33. </div>
  34. </body>