@component('emails.layouts.html', ['subject' => trans('messages.Reservation_confirmation', [], 'en')]) {{-- Greeting --}}
Hello {{ $reacter->full_name ?? $reacter->name }},
{{-- Main message --}}Your reservation for {{ $post->translations->first()->title }} has been confirmed!
@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') }} |
View the full event details:
{{-- Button --}}| View Event |
{{ timebank_config('mail.platform_sign_off_signature.' . app()->getLocale()) ?? timebank_config('mail.platform_sign_off_signature.en', 'See you around!') }}
@endcomponent