Payment Receipt

Invoice Details

Invoice No:KM-{{ \Carbon\Carbon::parse($sale->date)->format('Y') }}-{{ $sale->id }}
Invoice Date:{{ $sale->date }}
Buyer Name:{{ $sale->buyer_name }}
Buyer CNIC:{{ $sale->buyer_cnic }}

Car Details

Make:{{ $sale->make }}
Model:{{ $sale->model }}
Variant:{{ $sale->varient }}
Color:{{ $sale->color }}
Registration No:{{ $sale->registration_no }}
@foreach($sale->payments as $payment) @endforeach
Payment Information
Date Amount
Invoice Amount {{ number_format($sale->received_amount) }}
{{ \Carbon\Carbon::parse($payment->payment_date)->format('d-m-Y') }} {{ number_format($payment->amount) }}
Total Amount {{ number_format($sale->soled_price) }}
Amount Paid {{ number_format($sale->payments->sum('amount') + $sale->received_amount) }}
Balance Due {{ number_format($sale->soled_price - ($sale->payments->sum('amount') + $sale->received_amount)) }}
Notes: {{ $sale->note }}

Seller Signature _________________
Name : {{ $sale->seller_name }}
CNIC : {{ $sale->seller_cnic }}

Buyer Signature _________________
Name : {{ $sale->buyer_name }}
CNIC : {{ $sale->buyer_cnic }}

Printed By: {{ Auth::user()->name }}