stato-veicolo-section.blade.php 691 B

12345678910111213141516171819
  1. @props(['title', 'content'])
  2. <table class="table-content striped-table" width="100%">
  3. <tr>
  4. <td width="20%" align="center" style="font-size: 20px; border:none!important;">
  5. <table class="">
  6. <tr class="tr-sub-title">
  7. <td class="bold" style=" border:none!important;">{{ $title }}</td>
  8. </tr>
  9. </table>
  10. </td>
  11. <td width="80%">
  12. <table class="striped-table">
  13. <tr>
  14. <td width="100%" class="" style="padding-bottom: 10px !important;border:none!important;">{{ $content }}</td>
  15. </tr>
  16. </table>
  17. </td>
  18. </tr>
  19. </table>