@extends('layouts.dashboard') @section('header')

{{ __('Customer Details: ') . $customer->name }}

@endsection @section('content')

Customer Information

Detailed information about the customer including contact details and conversion history.

Customer Details

Name: {{ $customer->name }}
Email: {{ $customer->email }}
Phone: {{ $customer->phone ?: 'N/A' }}
Company: {{ $customer->company ?: 'N/A' }}
Address: {{ $customer->address ?: 'N/A' }}
Converted From: {{ $customer->lead ? $customer->lead->name : 'Direct' }}
@endsection