@php /** @var \App\Models\CorelifeRegistration $registration */ /** @var \App\Models\CorelifeCourse $course */ @endphp @component('mail::message') # Webinar access confirmed Dear {{ $registration->name }}, Thank you for your payment for **{{ $course->name ?? 'CoreLife Training' }}**. @php $programme = $course->programme ?? null; @endphp @if ($programme && ! is_null($programme->cpd_points)) - **CPD points:** {{ $programme->cpd_points }} point{{ $programme->cpd_points === 1 ? '' : 's' }} @endif @if ($course->start_date) - **Date:** {{ $course->start_date->format('d M Y') }} @if ($course->end_date && $course->end_date->isAfter($course->start_date)) - **Ends:** {{ $course->end_date->format('d M Y') }} @endif @endif @if ($course->delivery_mode) - **Delivery mode:** {{ $course->delivery_mode }} @endif @if ($course->location) - **Organised by / Host:** {{ $course->location }} @endif ## Join the webinar @if ($course->webinar_link) You can join the live session using the link below: @component('mail::button', ['url' => $course->webinar_link]) Join webinar @endcomponent **Webinar link:** {{ $course->webinar_link }} @else This programme does not have an online link configured. Please contact the CoreLife team if you believe this is an error. @endif @if ($course->webinar_join_instructions) {!! nl2br(e($course->webinar_join_instructions)) !!} @else Please log in 10 minutes before the scheduled start time. Make sure your display name shows your full name so that we can verify attendance. @endif ## Your registration - **Participants covered by this registration:** {{ $registration->quantity }} - **Amount paid:** RM {{ number_format($registration->amount, 2) }} ({{ $registration->currency }}) - **Order ID:** {{ $registration->order_id }} @if ($registration->senangpay_transaction_id) - **SenangPay Transaction ID:** {{ $registration->senangpay_transaction_id }} @endif If you have any questions, please reply to this email or contact the CORELIFE TRAINING AND CONSULTANCY SDN BHD team. Thanks and see you at the programme, **CORELIFE TRAINING AND CONSULTANCY SDN BHD** @endcomponent