@if (count($user->appointments) == 0) @else
@foreach ($user->appointments as $appointment)
{{ ucfirst($appointment->getFormattedDateFull()) }} @if ($appointment->pivot->host) {{ trans('Host') }} - {{ $appointment->getGuestsNumberShortFormatted() }} @else {{ trans('Guest') }} @endif
@endforeach
@endif