migrate to gtea from bistbucket

This commit is contained in:
2026-03-15 17:08:23 +07:00
commit 129ca2260c
3716 changed files with 566316 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<div class="modal fade" id="view-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-payment-table-data">
<tr>
<td colspan="6" class="text-center text-muted">{{ __('Loading...') }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>