master

laravel/framework

Last updated at: 29/12/2023 09:24

subcopy.blade.php

TLDR

This file is a blade template used in Laravel's mail system. It displays a subcopy of the email content in an HTML table.

END

<table class="subcopy" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>