Decorate inline attachments across all email designs
This commit is contained in:
parent
bd6c666966
commit
1f6621e3f8
2 changed files with 20 additions and 0 deletions
|
|
@ -172,6 +172,11 @@
|
|||
|
||||
<div>
|
||||
@isset($links)
|
||||
|
||||
@if(count($links) >=1)
|
||||
<p><strong>{{ ctrans('texts.attachments') }}</strong></p>
|
||||
@endif
|
||||
|
||||
@foreach($links as $link)
|
||||
{!! $link ?? '' !!}<br>
|
||||
@endforeach
|
||||
|
|
|
|||
|
|
@ -20,6 +20,21 @@
|
|||
</tr>
|
||||
@endif
|
||||
|
||||
@isset($links)
|
||||
|
||||
@if(count($links) >=1)
|
||||
<p><strong>{{ ctrans('texts.attachments') }}</strong></p>
|
||||
@endif
|
||||
|
||||
@foreach($links as $link)
|
||||
<tr>
|
||||
<td>
|
||||
<p> {!! $link ?? '' !!}</p>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endisset
|
||||
|
||||
@isset($whitelabel)
|
||||
@if(!$whitelabel)
|
||||
<p>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue