File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed
framework/core/views/email Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2020- sidebar width by @imorland [ #4312 ]
2121- minor styling fixes by @imorland [ #4315 ]
2222- FA icon shift when using Kit by @imorland [ #4304 ]
23+ - email notification and information templates not rendering named slot content by @imorland [ #4317 ]
2324
2425### Changed
2526
Original file line number Diff line number Diff line change 44 </x-slot:header >
55
66 <x-slot:content >
7- {{ $slot ?? $body ?? ' ' } }
7+ {!! $body ?? $slot ?? ' ' ! ! }
88 @if (isset ($preview ) )
99 <div class =" content-preview" >
10- {{ $preview } }
10+ {!! $preview ! ! }
1111 </div >
1212 @endif
1313 </x-slot:content >
Original file line number Diff line number Diff line change 44 </x-slot:header >
55
66 <x-slot:content >
7- {{ $slot ?? $body ?? ' ' } }
7+ {!! $body ?? $slot ?? ' ' ! ! }
88 @if (isset ($preview ) )
99 <div class =" content-preview" >
10- {{ $preview } }
10+ {!! $preview ! ! }
1111 </div >
1212 @endif
1313 </x-slot:content >
Original file line number Diff line number Diff line change 44</x-slot:header >
55
66<x-slot:content >
7- {{ $slot ?? $body ?? ' ' } }
7+ {!! $body ?? $slot ?? ' ' ! ! }
88</x-slot:content >
99
1010<x-slot:footer >
Original file line number Diff line number Diff line change 44</x-slot:header >
55
66<x-slot:content >
7- {{ $slot ?? $body ?? ' ' } }
7+ {!! $body ?? $slot ?? ' ' ! ! }
88</x-slot:content >
99
1010<x-slot:footer >
You can’t perform that action at this time.
0 commit comments