Files
kulakpos_web/Modules/Business/resources/views/walk-dues/excel-csv.blade.php
eko54r 05fd3230b8
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 5m14s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 17s
Build, Push and Deploy / deploy-staging (push) Successful in 41s
Build, Push and Deploy / deploy-production (push) Has been skipped
update marketing
2026-05-14 11:55:22 +07:00

32 lines
1.2 KiB
PHP

<table class="table" id="datatable">
<thead>
<tr>
<th class="table-header-content">{{ __('SL') }}.</th>
<th class="table-header-content">{{ __('Invoice Number') }}</th>
<th class="table-header-content">{{ __('Due Amount') }}</th>
</tr>
</thead>
<tbody>
@foreach ($walk_in_customers as $walk_in_customer)
<tr>
<td class="table-single-content">
{{ $loop->iteration }}
</td>
<td class="table-single-content">{{ $walk_in_customer->invoiceNumber }}</td>
<td class="text-danger table-single-content">
{{ currency_format($walk_in_customer->dueAmount, currency: business_currency()) }}
</td>
</tr>
@endforeach
</tbody>
@if ($walk_in_customers->count() > 0)
<tr class="table-footer">
<td class="text-start">{{ __('Total') }}</td>
<td></td>
<td class="text-end">
{{ currency_format($walk_in_customers->sum('dueAmount'), currency: business_currency()) }}
</td>
</tr>
@endif
</table>