Mobile: @if ($feeInvoice->business->phone) {{ $feeInvoice->business->phone }} @else {{ __('core.na') }} @endif Email: @if ($feeInvoice->business->email) {{ $feeInvoice->business->email }} @else {{ __('core.na') }} @endif
SL | Fee Type | Discount | Fine | Gross Amount | Net Amount | Paid |
---|---|---|---|---|---|---|
{{ $key + 1 }} | {{ $details->feeCategory->fee_category ?? '' }} | {{ $details->extra_discount }} | {{ $details->fine_amount }} | {{ $details->amount }} | {{ $details->amount + $details->fine_amount - $details->extra_discount }} | {{ $details->recieve }} |
Subtotal: | {{ $feeInvoice['total_amount'] }} |
Discount: | {{ $feeInvoice['total_discount'] }} |
Total: | {{ $feeInvoice['total_amount'] - $feeInvoice['total_discount'] }} |
Paid Amount: | {{ $feeInvoice['total_recieve'] }} |
Due Amount: | {{ $feeInvoice['total_amount'] - $feeInvoice['total_discount'] - $feeInvoice['total_recieve'] }} |
Paid Date: | Mar 17, 2025 |
Payment Method: @if($feeInvoice->transection) @if($feeInvoice->transection->payment_method == '1') Cash @elseif($feeInvoice->transection->payment_method == '2') Card @elseif($feeInvoice->transection->payment_method == '3') Cheque @elseif($feeInvoice->transection->payment_method == '4') Bank Transfer @elseif($feeInvoice->transection->payment_method == '5') Other @endif @else Not Available @endif