panel.blade.php
TLDR
This file is a Blade template file that defines the HTML structure for a panel component in an email.
Classes
Class: panel
This class is used to create a table-based panel element. It has the following attributes:
-
width
: Specifies the width of the panel. -
cellpadding
: Specifies the padding of the panel's cells. -
cellspacing
: Specifies the spacing between the panel's cells. -
role
: Specifies the role of the panel in the presentation.
Class: panel-content
This class is used to create a table cell that contains the content of the panel.
Class: panel-item
This class is used to create a table cell that contains a single item of the panel's content.
END
<table class="panel" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="panel-content">
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="panel-item">
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
</td>
</tr>
</table>