@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:') }}
| {{ __('Location:') }} | {{ $post->meeting->venue }} |
| {{ __('Address:') }} | {{ $post->meeting->address }} |
| {{ __('Date & Time:') }} | {{ \Illuminate\Support\Carbon::parse($post->meeting->from)->isoFormat('dddd D MMMM YYYY, H:mm') }} |
{{ __('If you wish to reserve again, you can view the event:') }}
{{-- Button --}}| {{ __('View Event') }} |
{{ timebank_config('mail.platform_sign_off_signature.' . app()->getLocale()) ?? timebank_config('mail.platform_sign_off_signature.en', 'See you around!') }}
@endcomponent