reminders.blade.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <div>
  2. <header id="title--section" class="d-flex align-items-center justify-content-between">
  3. <div class="title--section_name d-flex align-items-center justify-content-between">
  4. <i class="ico--ui title_section utenti me-2"></i>
  5. <h2 class="primary">Scadenze</h2>
  6. </div>
  7. </header>
  8. <section id="resume-table">
  9. <div class="compare--chart_wrapper d-none"></div>
  10. <table class="table tablesaw tablesaw-stack" data-tablesaw="" id="tablesaw-350">
  11. <thead>
  12. <tr>
  13. <th scope="col">Tipologia</th>
  14. <th scope="col">Data</th>
  15. <th scope="col">Persona</th>
  16. </tr>
  17. </thead>
  18. <tbody id="checkall-target">
  19. @foreach($records as $record)
  20. <tr>
  21. <td>{{$record["type"]}}</td>
  22. <td>{{date("d/m/Y", strtotime($record["date"]))}}</td>
  23. <td>{{$record["name"]}}</td>
  24. </tr>
  25. @endforeach
  26. </tbody>
  27. </table>
  28. <!--
  29. <div class="paginator d-flex justify-content-center">
  30. <nav aria-label="Page navigation example">
  31. <ul class="pagination">
  32. <li class="page-item">
  33. <a class="page-link" href="#" aria-label="Previous">
  34. <span aria-hidden="true"></span>
  35. </a>
  36. </li>
  37. <li class="page-item"><a class="page-link" href="#">1</a></li>
  38. <li class="page-item"><a class="page-link" href="#">2</a></li>
  39. <li class="page-item"><a class="page-link" href="#">3</a></li>
  40. <li class="page-item"><a class="page-link" href="#">3</a></li>
  41. <li class="page-item"><span class="more-page">...</span></li>
  42. <li class="page-item">
  43. <a class="page-link" href="#" aria-label="Next">
  44. <span aria-hidden="true"></span>
  45. </a>
  46. </li>
  47. </ul>
  48. </nav>
  49. </div>
  50. -->
  51. </section>
  52. </div>