print.blade.php 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <!-- Modal -->
  2. <div class="modal fade" id="printModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  3. <div class="modal-dialog" role="document">
  4. <div class="modal-content">
  5. <div class="modal-header bg-primary">
  6. <h5 class="modal-title text-white" id="exampleModalLabel">CETAK DATA</h5>
  7. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  8. <span aria-hidden="true">&times;</span>
  9. </button>
  10. </div>
  11. <div style="width: 100%; display: block; height: 1px; background-color: #dedede;"></div>
  12. <div class="modal-body" style="overflow: hidden;">
  13. <form action="{{route('rt-print')}}" method="POST" enctype="multipart/enctype">
  14. <input type="hidden" name="status_pembayaran" id="pstatus-pembayaran">
  15. <input type="hidden" name="bi_type" id="pbi_type">
  16. <input type="hidden" name="month" value="{{$month}}">
  17. <input type="hidden" name="year" value="{{$year}}">
  18. <input type="hidden" name="getUptName" value="{{$getUptName}}">
  19. @csrf
  20. <center>
  21. <br>
  22. <button type="submit" class="btn btn-success"><i class="ni ni-single-copy-04"></i>&nbsp;&nbsp;DOWNLOAD AS PDF</button>
  23. @include('dev.helpers.button.btnBatal')
  24. </center>
  25. </center>
  26. </form>
  27. </div>
  28. </div>
  29. </div>
  30. </div>