{{ __('Commercial month') }} {{-- --}}
@if (count($appointments) == 0) @else
@foreach ($appointments as $datas)
@foreach ($datas['list'] as $appointment)
{{ $appointment->getTimeRange() }} @if ($appointment->type == 1) {{ trans('In person') }} @else {{ trans('Virtual') }} @endif @if ($appointment->draft) {{ trans('Draft') }} @endif
@endforeach
@endforeach
@endif