{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
{{ $user->phone ?? '-' }}
{{ $user->is_active ? 'Aktif' : 'Nonaktif' }}
Riwayat Booking Terbaru
@forelse ($user->bookings as $booking)
#{{ str_pad($booking->queue_number, 2, '0', STR_PAD_LEFT) }}
{{ $booking->service->name ?? '-' }}
{{ $booking->created_at->locale('id')->isoFormat('D MMM Y') }}
@php $b = $booking->status_badge; @endphp {{ $b['label'] }}
@empty

Belum ada booking.

@endforelse