@component('emails.layouts.html', ['subject' => trans('messages.Reservation_cancelled', [], 'en')]) {{-- Greeting --}}

{{ __('Hello') }} {{ $reacter->full_name ?? $reacter->name }},

{{-- Main message --}}

{{ __('Your reservation for :event has been cancelled.', ['event' => $post->translations->first()->title]) }}

@if($post->meeting) {{-- Event Details --}}

{{ __('Event Details:') }}

@if($post->meeting->venue) @endif @if($post->meeting->address) @endif @if($post->meeting->from) @endif
{{ __('Location:') }} {{ $post->meeting->venue }}
{{ __('Address:') }} {{ $post->meeting->address }}
{{ __('Date & Time:') }} {{ \Illuminate\Support\Carbon::parse($post->meeting->from)->isoFormat('dddd D MMMM YYYY, H:mm') }}
@endif {{-- Reserve again message --}}

{{ __('If you wish to reserve again, you can view the event:') }}

{{-- Button --}} {{-- Closing --}}

{{ timebank_config('mail.platform_sign_off_signature.' . app()->getLocale()) ?? timebank_config('mail.platform_sign_off_signature.en', 'See you around!') }}

@endcomponent