| 1234567891011121314151617181920212223242526272829303132 |
- <!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">
- {!! $template !!}
- </div>
- </body>
|