@php use Illuminate\Support\Carbon; $tz = $booking->timezone ?: 'UTC'; $starts = Carbon::parse($booking->starts_at)->setTimezone($tz); @endphp
{{ $booking->meetingType?->name }}
{!! __('mail.meeting_cancelled_body', ['when' => '' . e($starts->translatedFormat('l, M j, Y g:i A')) . '', 'tz' => '' . e($tz) . '']) !!}
@if($booking->cancellation_reason){{ __('mail.meeting_cancelled_reason') }} {{ $booking->cancellation_reason }}
@endif @php $host = $booking->user; $type = $booking->meetingType; @endphp @if(! $forHost && $host && $type){{ __('mail.meeting_cancelled_book_again_intro') }} {{ __('mail.meeting_cancelled_book_again_link') }}.
@endif