30 lines
1.2 KiB
PHP
30 lines
1.2 KiB
PHP
<div class="modal fade" id="view-due-payment-modal" tabindex="-1" aria-labelledby="viewPaymentModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-lg modal-dialog-centered">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">{{ __('View Payment') }}</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ __('SL.') }}</th>
|
|
<th>{{ __('Date') }}</th>
|
|
<th>{{ __('Receipt No.') }}</th>
|
|
<th>{{ __('Amount') }}</th>
|
|
<th>{{ __('Payment Type') }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="view-due-payment-table-data">
|
|
<tr>
|
|
<td colspan="6" class="text-center text-muted">{{ __('Loading...') }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|