@extends('layouts.app') @section('title', 'Customer Details') @section('header', 'Customer Details') @section('content')
| Name | {{ $customer->name }} |
|---|---|
| Customer ID | {{ $customer->customer_id }} |
| {{ $customer->email }} | |
| Phone | {{ $customer->phone }} |
| Credit Limit | ${{ number_format($customer->limit_amount, 2) }} |
| Credit Days | {{ $customer->limit_days }} |
{{ $invoiceCount }}
${{ number_format($totalAmount, 2) }}
${{ number_format($paidAmount, 2) }}
${{ number_format($outstandingAmount, 2) }}
| Invoice # | Date | Product | Quantity | Amount | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_no }} | {{ $invoice->invoice_date }} | {{ $invoice->product }} | {{ $invoice->pgi_quantity }} | ${{ number_format($invoice->amount, 2) }} | @if($invoice->import_status == 1) Completed @else Pending @endif | View |
| No invoices found | ||||||