notification.blade.php 966 B

1234567891011121314151617181920212223242526
  1. <div class="modal fade" id="notificationModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  2. <div class="modal-dialog modal-lg " role="document">
  3. <div class="modal-content modal-lg">
  4. <div class="modal-header bg-primary">
  5. <h5 class="modal-title text-white" id="exampleModalLabel">PEMBERITAHUAN</h5>
  6. <button type="button" class="close text-white" data-dismiss="modal" aria-label="Close">
  7. <span aria-hidden="true" class="text-white">&times;</span>
  8. </button>
  9. </div>
  10. <div class="modal-body" style="height: 500px;overflow-y: auto">
  11. <table cellpadding="10px">
  12. <thead>
  13. <tr>
  14. <th scope="col" width="20%" class="text-center">JENIS PROGRAM</th>
  15. <th scope="col" class="text-center">PESAN</th>
  16. <th scope="col" class="text-center">TANGGAL</th>
  17. </tr>
  18. </thead>
  19. <tbody id="ntbody">
  20. </tbody>
  21. </table>
  22. </div>
  23. </div>
  24. </div>
  25. </div>