@extends('layouts.app') @section('title', 'Customer Profile') @section('breadcrumbs') @endsection @section('content')

John Doe

Customer ID: CUST001

Edit

Contact Information

Email

john@example.com

Phone

+1 (555) 123-4567

Country

United States

Statistics

Total Visits

12

Nights Stayed

45

Total Spending

Lifetime Value

$18,500

Average Spend

$1,542

Reservation History

@for ($i = 0; $i < 8; $i++) @endfor
Reservation # Check-in Check-out Nights Total Status
RES-2024-{{ str_pad(1001 + $i, 5, '0', STR_PAD_LEFT) }} {{ now()->subMonths($i)->format('M d, Y') }} {{ now()->subMonths($i)->addDays(3)->format('M d, Y') }} {{ 3 + ($i % 2) }} ${{ 1200 + ($i * 100) }} @if ($i === 0) Upcoming @else Completed @endif

Complete Information

Address

123 Main Street, Los Angeles, CA 90210

Passport Number

P123456789

Date of Birth

May 15, 1980

Status

Active

Special Notes

Preferred guest. Likes ocean view rooms. VIP status.

@endsection