@if (count($bookings) == 0) @else
@foreach ($bookings as $day => $list)
@foreach ($list as $booking)
{{ $booking->appointment->getStartTimeForBooking() }} @if ($booking->appointment->type == 1) {{ trans('In person') }} @else {{ trans('Virtual') }} @endif @if (!empty($booking->appointment->name)) - {{ $booking->appointment->name }} @endif
@if ($booking->user)
{{ $booking->user->infos->firstname }} {{ $booking->user->infos->lastname }} @if ($booking->user->infos->city) - {{ $booking->user->infos->city }} @endif @if ($booking->user->infos->zip_code) ({{ $booking->user->infos->zip_code }}) @endif
@endif
@endforeach
@endforeach
@endif
@if ($modalOpen) {{ $modalTitle }}
@if (!$bookingToShow->isFinished()) La réservation n'est pas terminée @endif
{{ __('Created at') }} {{ $bookingToShow->getDateHR($bookingToShow->created_at) }}
{{ __('Updated at') }} {{ $bookingToShow->getDateHR($bookingToShow->updated_at) }}
{{ __('Appointment') }}

{{ $bookingToShow->appointment->getFormattedDateFull() }} - {{ $bookingToShow->appointment->getFormattedType() }} @if (!empty($booking->appointment->name)) - {{ $booking->appointment->name }} @endif

@if (!empty($bookingToShow->note)) @endif
Questionnaire
Avez-vous déjà participé à un atelier avec moi ? {{ $bookingToShow->getAnswer('alreadySeen', true) }}
Avez-vous déjà un Thermomix® ? {{ $bookingToShow->getAnswer('hasDevice', true) }} @if ($bookingToShow->getAnswer('hasDevice') == 'yes') {{ $bookingToShow->getDeviceName() }} @endif
Aurez-vous des invité(e)s pour cet atelier ? {{ $bookingToShow->getAnswer('hasGuests', true) }} @if ($bookingToShow->hasGuests()) {{ $bookingToShow->getGuestsNumber() }} invité(e)s @endif
@if (isset($bookingToShow->user)) {{ $bookingToShow->user->infos->firstname }} {{ $bookingToShow->user->infos->lastname }} @if (!empty($bookingToShow->user->infos->address)) {{ $bookingToShow->user->infos->address }}
{{ $bookingToShow->user->infos->zip_code }} {{ $bookingToShow->user->infos->city }}
@endif {{ $bookingToShow->user->infos->phone }} - {{ $bookingToShow->user->email }}
@else Pas d'utilisateur créé @endif
@if ($bookingToShow->getGuestsNumber() < 1) Pas d'invité @endif @for ($i = 0; $i < $bookingToShow->getGuestsNumber(); $i++)
Invité(e) {{ $i + 1 }} @if (isset($guestsInfos[$i]) && $guestsInfos[$i]['exists']) Utilisateur trouvé @endif
@if (isset($guestsInfos[$i]) && $guestsInfos[$i]['exists'])
Correspondance : {{ trans(ucfirst($guestsInfos[$i]['match_by'])) }} {{ $guestsInfos[$i]['infos']['firstname'] }} {{ $guestsInfos[$i]['infos']['lastname'] }} @if ($guestsInfos[$i]['has_appointments']) A déjà participé à un atelier @endif
@endif
{{ __('Save') }} {{ __('Saved.') }}
@endfor
@if ($completed) {{ trans('Complete') }} @else {{ trans('Not complete') }} @endif
{{--
--}} @if (!empty($toValidate) && $bookingToShow->isFinished())
@endif @if (!empty($toDelete))
@endif
@endif @if ($showModalFilters) {{ trans('Filters') }}
@endif