32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
|
|
<div class="modal fade" id="view-party-loss-profit-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 Details') }}</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 class="text-start">{{ __('Product Name') }}</th>
|
||
|
|
<th>{{ __('Quantity') }}</th>
|
||
|
|
<th>{{ __('Purchase Price') }}</th>
|
||
|
|
<th>{{ __('Sale Price') }}</th>
|
||
|
|
<th>{{ __('Profit') }}</th>
|
||
|
|
<th>{{ __('Loss') }}</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody id="view-party-loss-profit-data">
|
||
|
|
<tr>
|
||
|
|
<td colspan="7" class="text-center text-muted">{{ __('Loading...') }}</td>
|
||
|
|
</tr>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|