@extends('dashboard.body.main') @section('container')

Customer Details

{{ $customer->name }}

Customer ID: #{{ $customer->id }}

  • {{ $customer->email }}
  • {{ $customer->phone }}
  • {{ $customer->city ?? 'Unknown' }}
Information
Full Name

{{ $customer->name }}

Email

{{ $customer->email }}

Phone

{{ $customer->phone }}

City

{{ $customer->city }}

Address

{{ $customer->address }}

Joined At

{{ $customer->created_at->format('d M Y') }}

@endsection