@extends('layouts.app') @section('title', 'Customer Details') @section('page-title', 'Customer Management') @section('content')
{{ $customer->company_name ?? 'Individual' }} • {{ $customer->is_active ? 'Active' : 'Inactive' }}
Total Bookings
Total Spent
Total Paid
Outstanding Due
{{ $customer->email }}
Phone
{{ $customer->phone }}
CNIC
{{ $customer->cnic ?? 'N/A' }}
Address
{{ $customer->address }}
City
{{ $customer->city }}
State
{{ $customer->state }}
Postal Code
{{ $customer->postal_code }}
Country
{{ $customer->country }}
{{ $customer->notes }}