@extends('layouts.admin') @section('title', 'Customer Details - ' . $customer->name) @section('page-title', 'Customer Details') @section('breadcrumbs') Customers chevron_right {{ $customer->name }} @endsection @section('header-actions')
@endsection @section('content'){{ $customer->company }}
@endif{{ $customer->invoices ? $customer->invoices->count() : 0 }}
${{ number_format($balance, 2) }}
${{ number_format($paid, 2) }}
${{ number_format($total, 2) }}
{{ $customer->email ?? 'N/A' }}
{{ $customer->phone ?? 'N/A' }}
{{ $customer->company }}
@if($customer->address){{ $customer->address }}
@endif
@if($customer->city || $customer->state || $customer->zip)
{{ $customer->city }}{{ $customer->city && $customer->state ? ', ' : '' }}{{ $customer->state }} {{ $customer->zip }}
@endif
@if($customer->country)
{{ $customer->country }}
@endif
No address information available
@endif{{ $customer->notes }}
| Invoice # | Date | Due Date | Amount | Balance | Status |
|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->issue_date->format('M d, Y') }} | {{ $invoice->due_date->format('M d, Y') }} | ${{ number_format($invoice->total, 2) }} | ${{ number_format($invoice->balance, 2) }} | {{ ucfirst($invoice->status) }} |
No invoices found for this customer
@endif