@props(['appointment'])
{{ $appointment->start_time->format('g a') }}
{{ number_format($appointment->getDurationInHours(), 1) }} hr
{{ $appointment->getStatusLabel() }}

{{ $appointment->service->name }}

@if($appointment->client && $appointment->client->address)

@ {{ $appointment->client->address }}

@endif
{{ $appointment->getClientInitials() }}
{{ $appointment->client ? $appointment->client->first_name . ' ' . $appointment->client->last_name : 'Sans client' }}