| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{$title}}</title>
- <style>
- body {
- line-height: 30px;
- /*color: #fff;*/
- }
- span.code {
- color: #060709;
- font-size: 20px;
- font-weight: bold;
- padding: 10px 0;
- }
- .logo img {
- width: 120px;
- height: 60px;
- display: inline-block;
- }
- </style>
- </head>
- <body>
- <div class="mail">
- @if ($logo)
- <div class="logo">
- <img src="{{$logo}}" alt="">
- </div>
- @endif
- {!! $template !!}
- </div>
- </body>
|