| 12345678910111213141516171819 |
- @props(['title', 'content'])
- <table class="table-content striped-table" width="100%">
- <tr>
- <td width="20%" align="center" style="font-size: 20px; border:none!important;">
- <table class="">
- <tr class="tr-sub-title">
- <td class="bold" style=" border:none!important;">{{ $title }}</td>
- </tr>
- </table>
- </td>
- <td width="80%">
- <table class="striped-table">
- <tr>
- <td width="100%" class="" style="padding-bottom: 10px !important;border:none!important;">{{ $content }}</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
|