File tree Expand file tree Collapse file tree 17 files changed +493
-0
lines changed
resources/views/vendor/mail Expand file tree Collapse file tree 17 files changed +493
-0
lines changed Original file line number Diff line number Diff line change
1
+ <table class =" action" align =" center" width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
2
+ <tr >
3
+ <td align =" center" >
4
+ <table width =" 100%" border =" 0" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
5
+ <tr >
6
+ <td align =" center" >
7
+ <table border =" 0" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
8
+ <tr >
9
+ <td >
10
+ <a href =" {{ $url } }" class =" button button-{{ $color ?? ' primary' } }" target =" _blank" rel =" noopener" >{{ $slot } } </a >
11
+ </td >
12
+ </tr >
13
+ </table >
14
+ </td >
15
+ </tr >
16
+ </table >
17
+ </td >
18
+ </tr >
19
+ </table >
Original file line number Diff line number Diff line change
1
+ <tr >
2
+ <td >
3
+ <table class =" footer" align =" center" width =" 570" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
4
+ <tr >
5
+ <td class =" content-cell" align =" center" >
6
+ {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
7
+ </td >
8
+ </tr >
9
+ </table >
10
+ </td >
11
+ </tr >
Original file line number Diff line number Diff line change
1
+ <tr >
2
+ <td class =" header" >
3
+ <a href =" {{ $url } }" style =" display : inline-block ;" >
4
+ @if (trim ($slot ) === ' Laravel' )
5
+ <img src =" https://laravel.com/img/notification-logo.png" class =" logo" alt =" Laravel Logo" >
6
+ @else
7
+ {{ $slot } }
8
+ @endif
9
+ </a >
10
+ </td >
11
+ </tr >
Original file line number Diff line number Diff line change
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
+ <meta name =" viewport" content =" width=device-width, initial-scale=1.0" />
5
+ <meta http-equiv =" Content-Type" content =" text/html; charset=UTF-8" />
6
+ <meta name =" color-scheme" content =" light" >
7
+ <meta name =" supported-color-schemes" content =" light" >
8
+ <style >
9
+ @media only screen and (max-width : 600px) {
10
+ .inner-body {
11
+ width : 100% !important ;
12
+ }
13
+
14
+ .footer {
15
+ width : 100% !important ;
16
+ }
17
+ }
18
+
19
+ @media only screen and (max-width : 500px) {
20
+ .button {
21
+ width : 100% !important ;
22
+ }
23
+ }
24
+ </style >
25
+ </head >
26
+ <body >
27
+
28
+ <table class =" wrapper" width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
29
+ <tr >
30
+ <td align =" center" >
31
+ <table class =" content" width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
32
+ {{ $header ?? ' ' } }
33
+
34
+ <!-- Email Body -->
35
+ <tr >
36
+ <td class =" body" width =" 100%" cellpadding =" 0" cellspacing =" 0" >
37
+ <table class =" inner-body" align =" center" width =" 570" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
38
+ <!-- Body content -->
39
+ <tr >
40
+ <td class =" content-cell" >
41
+ {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
42
+
43
+ {{ $subcopy ?? ' ' } }
44
+ </td >
45
+ </tr >
46
+ <!-- ./Body content -->
47
+ </table >
48
+ </td >
49
+ </tr >
50
+ <!-- E./mail Body -->
51
+
52
+ {{ $footer ?? ' ' } }
53
+ </table >
54
+ </td >
55
+ </tr >
56
+ </table >
57
+ </body >
58
+ </html >
Original file line number Diff line number Diff line change
1
+ @component (' mail::layout' )
2
+ {{-- Header --}}
3
+ @slot (' header' )
4
+ @component (' mail::header' , [' url' => config (' app.url' )] )
5
+ {{ config (' app.name' ) } }
6
+ @endcomponent
7
+ @endslot
8
+
9
+ {{-- Body --}}
10
+ {{ $slot } }
11
+
12
+ {{-- Subcopy --}}
13
+ @isset ($subcopy )
14
+ @slot (' subcopy' )
15
+ @component (' mail::subcopy' )
16
+ {{ $subcopy } }
17
+ @endcomponent
18
+ @endslot
19
+ @endisset
20
+
21
+ {{-- Footer --}}
22
+ @slot (' footer' )
23
+ @component (' mail::footer' )
24
+ © {{ date (' Y' ) } } {{ config (' app.name' ) } } . @lang (' All rights reserved.' )
25
+ @endcomponent
26
+ @endslot
27
+
28
+ @endcomponent
Original file line number Diff line number Diff line change
1
+ <table class =" panel" width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
2
+ <tr >
3
+ <td class =" panel-content" >
4
+ <table width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
5
+ <tr >
6
+ <td class =" panel-item" >
7
+ {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
8
+ </td >
9
+ </tr >
10
+ </table >
11
+ </td >
12
+ </tr >
13
+ </table >
14
+
Original file line number Diff line number Diff line change
1
+ <table class =" subcopy" width =" 100%" cellpadding =" 0" cellspacing =" 0" role =" presentation" >
2
+ <tr >
3
+ <td >
4
+ {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
5
+ </td >
6
+ </tr >
7
+ </table >
Original file line number Diff line number Diff line change
1
+ <div class =" table" >
2
+ {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
3
+ </div >
You can’t perform that action at this time.
0 commit comments