layout.blade.php (1365B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>{{ config('app.name') }}</title> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 7 <meta name="color-scheme" content="light"> 8 <meta name="supported-color-schemes" content="light"> 9 <style> 10 @media only screen and (max-width: 600px) { 11 .inner-body { 12 width: 100% !important; 13 } 14 15 .footer { 16 width: 100% !important; 17 } 18 } 19 20 @media only screen and (max-width: 500px) { 21 .button { 22 width: 100% !important; 23 } 24 } 25 </style> 26 </head> 27 <body> 28 29 <table class="wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation"> 30 <tr> 31 <td align="center"> 32 <table class="content" width="100%" cellpadding="0" cellspacing="0" role="presentation"> 33 {{ $header ?? '' }} 34 35 <!-- Email Body --> 36 <tr> 37 <td class="body" width="100%" cellpadding="0" cellspacing="0" style="border: hidden !important;"> 38 <table class="inner-body" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> 39 <!-- Body content --> 40 <tr> 41 <td class="content-cell"> 42 {{ Illuminate\Mail\Markdown::parse($slot) }} 43 44 {{ $subcopy ?? '' }} 45 </td> 46 </tr> 47 </table> 48 </td> 49 </tr> 50 51 {{ $footer ?? '' }} 52 </table> 53 </td> 54 </tr> 55 </table> 56 </body> 57 </html>