@extends('admin.layouts.app') @section('title', 'Customer Details - Admin Dashboard') @section('content')

Customer Details

Name:
{{ $customer->name }}
Email:
{{ $customer->email }}
Phone:
{{ $customer->phone ?? 'N/A' }}
Status:
{{ $customer->is_active ? 'Active' : 'Inactive' }}
Created:
{{ $customer->created_at->format('M d, Y H:i') }}
Updated:
{{ $customer->updated_at->format('M d, Y H:i') }}
Address:
{{ $customer->address ?? 'No address provided' }}
@endsection