{{ __('Thank you for registering your child for our workshop. Here are the details of your registration:') }}
{{ __('Workshop Registration Details') }}
{{ __('Parent Name') . ': ' . $parent_name }}
{{ __('Child Name') . ': ' . $child_name }}
{{ __('Child Age') . ': ' . $child_age }}
@if (!empty($additional_children))
{{ __('Additional Children (optional)') . ': ' . $additional_children }}
@endif
{{ __('Email') . ': ' . $email }}
{{ __('Phone') . ': ' . $phone }}
{{ __('Selected Workshops:') }}
@php
// Fetch the workshop details from the first row of the workshops_details table
$workshopDetailsModel = \App\Models\WorkshopsDetailsModel::first();
@endphp
@foreach(json_decode($workshop_details, true) as $field)
{{ $workshopDetailsModel->{$field} }}
@endforeach
{{ $content }}
{{ __('This is a no-reply email. We will contact you shortly. Thank you for your patience.') }}