@extends('layouts.app') @section('title', $party->business_name ?? $party->name) @section('page_title', 'Party Overview & Transaction History') @section('content')
| Invoice # | Date | Amount | Status |
|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->invoice_date->format('d M Y') }} | ₹{{ number_format($inv->grand_total, 2) }} | {{ ucfirst($inv->payment_status) }} |
| No sales invoices yet. | |||
| Bill # | Date | Amount | Status |
|---|---|---|---|
| {{ $pur->purchase_number }} | {{ $pur->purchase_date->format('d M Y') }} | ₹{{ number_format($pur->grand_total, 2) }} | {{ ucfirst($pur->payment_status) }} |
| No purchase bills yet. | |||