@extends('layouts.admin')
@section('title','Client Detail')
@section('page-title','Client Detail')
@section('content')
| Name | {{ $client->name }} |
| Email | {{ $client->email }} |
| Phone | {{ $client->phone ?? '—' }} |
| Birthday | {{ $client->birthday ?? '—' }} |
| Loyalty Pts | {{ $client->loyalty_points }} |
| Joined | {{ $client->created_at->format('M j, Y') }} |
| Service | Date | Amount | Status |
@forelse($bookings as $b)
| {{ $b->service_name }} |
{{ \Carbon\Carbon::parse($b->appointment_date)->format('M j, Y') }} |
₵{{ number_format($b->total_amount,2) }} |
{{ ucfirst($b->status) }} |
@empty
| No bookings. |
@endforelse
@endsection