| 1234567891011121314151617181920212223 |
- @props(['title', 'content'])
- <table class="table-content" width="100%">
- <tr>
- <td width="20%" align="center" style="font-size: 20px;">
- <table>
- <tr class="tr-sub-title">
- <td class="bold">{{ $title }}</td>
- </tr>
- </table>
- </td>
- <td width="80%">
- <table>
- <tr>
- <td width="100%" class="">{{ $content }}</td>
- </tr>
- <tr>
- <td></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
|