| {{ __('SL') }}. | {{ __('Name') }} | {{ __('Phone') }} | {{ __('Type') }} | {{ __('Credit Limit') }} | {{ __('Due Amount') }} | |
|---|---|---|---|---|---|---|
| {{ ($parties->currentPage() - 1) * $parties->perPage() + $loop->iteration }} | {{ $party->name }} | {{ $party->phone }} | @if ($party->type == 'Retailer'){{ __('Customer') }} | @else{{ $party->type }} | @endif{{ currency_format($party->credit_limit, currency: business_currency()) }} | {{ currency_format($party->due, currency: business_currency()) }} |
| {{ __('Total') }} | {{ currency_format($parties->sum('credit_limit'), currency: business_currency()) }} | {{ currency_format($parties->sum('due'), currency: business_currency()) }} |