CoreLife Training
Register for {{ $course->name }}
@php
$dateLabel = null;
if ($course->start_date) {
$dateLabel = $course->start_date->format('d M Y');
if ($course->end_date && $course->end_date->isAfter($course->start_date)) {
$dateLabel .= ' – ' . $course->end_date->format('d M Y');
}
}
$timeLabel = null;
if ($course->start_time || $course->end_time) {
$timeLabel = ($course->start_time ?? '');
if ($course->end_time) {
$timeLabel .= ' – ' . $course->end_time;
}
}
@endphp
@if ($dateLabel || $course->location || $timeLabel)
{{ $dateLabel ?? 'Dates TBC' }}
@if ($timeLabel)
· {{ $timeLabel }}
@endif
@if ($course->location)
· {{ $course->location }}
@endif
@endif
Complete your details below and you will be redirected
@if (config('senangpay.use_open_api', true))
to SenangPay to make a secure online payment, or you may request HRD Corp processing.
@else
to complete your registration.
@endif
{{ $course->category }}
@endif{{ $course->name }}
@if ($course->summary){{ $course->summary }}
@endifProgramme dates
{{ $course->start_date->format('d M Y') }} @if ($course->end_date && $course->end_date->isAfter($course->start_date)) – {{ $course->end_date->format('d M Y') }} @endif
Venue
{{ $course->location }}
Investment
RM {{ number_format($course->price ?? 0, 2) }}
per participant
Delivery mode: {{ $course->delivery_mode }}
@endif @php $programme = $course->programme ?? null; @endphp @if ($programme && ! is_null($programme->cpd_points))CPD entitlement: {{ $programme->cpd_points }} CPD point{{ $programme->cpd_points === 1 ? '' : 's' }} (subject to attendance).
@endif @if ($course->senangpay_product_code)SenangPay product code: {{ $course->senangpay_product_code }}
@endif @if (! is_null($course->hrd_price))HRD Corp claimable fee: RM {{ number_format($course->hrd_price, 2) }} per pax.
@endifWhat happens after payment?
- • You will receive a SenangPay receipt for the transaction.
- • The CoreLife team will contact you with joining instructions and agenda.
- • For HRD Corp claims, you may opt for manual HRD processing instead of online payment.
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach