@extends('layouts.app') @section('title', $customer->name) @section('page-title', $customer->name) @section('content')
₹{{ number_format($totalBilled, 2) }}
Total Billed
₹{{ number_format($totalPaid, 2) }}
Total Paid
₹{{ number_format($outstanding, 2) }}
Outstanding
| Invoice # | Date | Amount | Status |
|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->invoice_date->format('d M Y') }} | ₹{{ number_format($inv->total_amount, 2) }} | {{ ucfirst($inv->status) }} |
| No invoices yet | |||