@extends('layouts.app') @section('css') @endsection @section('content')
| {{ __('S/N') }} | {{ __('Date') }} | {{ __('Invoice No') }} | {{ __('Paid Amount') }} | {{ __('Bill Amount') }} | {{ __('Balance') }} |
|---|---|---|---|---|---|
| {{ ++$key }} | {{ formatDate($data['transaction_date']) }} | {{ $data['reference'] }} | @if(isset($data['amount'])) {{ formatCurrencyAmount($data['amount'], $customerData->currency->symbol) }} @else {{ '-' }} @endif | @if(isset($data['total'])) {{ formatCurrencyAmount($data['total'], $customerData->currency->symbol) }} @else {{ '-' }} @endif | {{ formatCurrencyAmount($balance, $customerData->currency->symbol) }} |
| {{ __('Total') }} = | {{ formatCurrencyAmount($totalPaid, $customerData->currency->symbol) }} | {{ formatCurrencyAmount($totalBill, $customerData->currency->symbol) }} | {{ formatCurrencyAmount($balance, $customerData->currency->symbol) }} |