| 123456789101112131415161718192021222324 |
- <!-- Modal -->
- <div class="modal fade" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <img src="http://localhost:8000/templates/assets/img/trash.jpg" alt="" style="width: 50px; height: 30px; margin-bottom: 2px; padding-right: 10px; ">
- <h5 class="modal-title" id="exampleModalLabel" style="margin-top: 6px;">Hapus Data</h5>
- <button type="button" class="close" data-dismiss="modal" aria-label="Close">
- <span aria-hidden="true">×</span>
- </button>
- </div>
- <div style="width: 100%; display: block; height: 1px; background-color: #dedede;"></div>
- <div class="modal-body" style="overflow: hidden;">
- <form action="{{route('inspeksi-delete')}}" method="GET" enctype="multipart/enctype">
- @csrf
- <input type="hidden" name="id" id="dmid">
- <center>
- @include('dev.helpers.button.btnGroupHapus')
- </center>
- </form>
- </div>
- </div>
- </div>
- </div>
|