# KDHC {{ config('convention.year') }} Registration of Interest A new {{ ucfirst($registration->reg_type) }} registration of interest has been submitted for {{ config('convention.dates') }} at {{ config('convention.venue') }}. This is not a ticket or payment confirmation. Please review the details below: @if($registration->reg_type === 'speaker') ## Speaker Registration Details - **Name:** {{ $registration->speaker_full_name }} - **Title:** {{ $registration->speaker_title }} - **Organization:** {{ $registration->speaker_org }} - **Email:** {{ $registration->speaker_email }} - **Phone:** {{ $registration->speaker_phone }} - **Country:** {{ $registration->speaker_country }} @if($registration->speaker_link) - **Website/Link:** {{ $registration->speaker_link }} @endif @if($registration->speaker_interest) - **Interests:** {{ $registration->speaker_interest }} @endif @if($registration->speaker_title_proposed) - **Proposed Title:** {{ $registration->speaker_title_proposed }} @endif @if($registration->speaker_abstract) - **Abstract:** {{ $registration->speaker_abstract }} @endif @if($registration->speaker_relevance) - **Relevance:** {{ $registration->speaker_relevance }} @endif @if($registration->speaker_av_needs) - **AV Needs:** {{ $registration->speaker_av_needs }} @endif @if($registration->speaker_spoken_before) - **Previously Spoken:** {{ $registration->speaker_spoken_before }} @endif @if($registration->speaker_bio_headshot_path) - **Bio/Headshot:** File uploaded @endif @elseif($registration->reg_type === 'partner') ## Partner Registration Details - **Organization:** {{ $registration->partner_org }} - **Sector:** {{ $registration->partner_sector }} @if($registration->partner_web) - **Website:** {{ $registration->partner_web }} @endif - **Country:** {{ $registration->partner_country }} - **Contact Person:** {{ $registration->partner_contact }} - **Title:** {{ $registration->partner_title }} - **Email:** {{ $registration->partner_email }} - **Phone:** {{ $registration->partner_phone }} @if($registration->partner_type) - **Partnership Type:** {{ $registration->partner_type }} @endif @if($registration->partner_commitment) - **Commitment:** {{ $registration->partner_commitment }} @endif @if($registration->partner_collab) - **Collaboration Details:** {{ $registration->partner_collab }} @endif @if($registration->partner_profile_path) - **Profile Document:** File uploaded @endif @elseif($registration->reg_type === 'exhibitor') ## Exhibitor Registration Details - **Organization:** {{ $registration->exh_org }} - **Contact Person:** {{ $registration->exh_contact }} - **Title:** {{ $registration->exh_title }} - **Email:** {{ $registration->exh_email }} - **Phone:** {{ $registration->exh_phone }} @if($registration->exh_web) - **Website:** {{ $registration->exh_web }} @endif @if($registration->exh_category) - **Category:** {{ $registration->exh_category }} @endif - **Booth Type:** {{ $registration->exh_booth }} @if($registration->exh_power) - **Power Requirements:** {{ $registration->exh_power }} @endif @if($registration->exh_staff) - **Staff Count:** {{ $registration->exh_staff }} @endif @if($registration->exh_desc) - **Description:** {{ $registration->exh_desc }} @endif @if($registration->exh_logo_path) - **Logo:** File uploaded @endif @elseif($registration->reg_type === 'volunteer') ## Volunteer Registration Details - **Name:** {{ $registration->vol_name }} - **Email:** {{ $registration->vol_email }} - **Phone:** {{ $registration->vol_phone }} @if($registration->vol_gender) - **Gender:** {{ $registration->vol_gender }} @endif @if($registration->vol_age) - **Age:** {{ $registration->vol_age }} @endif @if($registration->vol_country) - **Country:** {{ $registration->vol_country }} @endif @if($registration->vol_interest) - **Interests:** {{ $registration->vol_interest }} @endif @if($registration->vol_days) - **Available Days:** {{ $registration->vol_days }} @endif @if($registration->vol_experience) - **Experience:** {{ $registration->vol_experience }} @endif @if($registration->em_name) - **Emergency Contact:** {{ $registration->em_name }} @endif @if($registration->em_relationship) - **Relationship:** {{ $registration->em_relationship }} @endif @if($registration->em_phone) - **Emergency Phone:** {{ $registration->em_phone }} @endif @elseif($registration->reg_type === 'delegate') ## Delegate Registration Details - **Full Name:** {{ $registration->del_full_name }} - **Email:** {{ $registration->del_email }} - **Phone:** {{ $registration->del_phone }} - **Country:** {{ $registration->del_country }} @if($registration->del_organization) - **Organization:** {{ $registration->del_organization }} @endif @if($registration->del_job_title) - **Job Title:** {{ $registration->del_job_title }} @endif - **Category:** {{ $registration->del_category }} @if($registration->del_pass_type || $registration->del_delegate_type) - **Package:** {{ $registration->del_pass_type }} / {{ $registration->del_delegate_type }} @if($registration->del_fee_usd) (USD {{ $registration->del_fee_usd }}) @endif @endif @if($registration->del_accommodation_assistance) - **Accommodation Assistance:** {{ $registration->del_accommodation_assistance }} @endif @if($registration->del_hotel_category) - **Hotel Category:** {{ $registration->del_hotel_category }} @endif @if($registration->del_checkin) - **Check-in Date:** {{ $registration->del_checkin }} @endif @if($registration->del_checkout) - **Check-out Date:** {{ $registration->del_checkout }} @endif @if($registration->del_excursion) - **Excursion:** {{ $registration->del_excursion }} @endif @if($registration->del_special_requirements) - **Special Requirements:** {{ $registration->del_special_requirements }} @endif - **Payment Method:** {{ $registration->del_payment_method }} @if($registration->del_payment_reference) - **Payment Reference:** {{ $registration->del_payment_reference }} @endif - **Information Accurate:** {{ $registration->del_info_accurate ? 'Yes' : 'No' }} - **Contact Consent:** {{ $registration->del_contact_consent ? 'Yes' : 'No' }} - **Privacy Consent:** {{ $registration->del_privacy_consent ? 'Yes' : 'No' }} - **Signature:** {{ $registration->del_signature }} - **Date:** {{ $registration->del_date }} @endif **Registration ID:** {{ $registration->id }} **Submitted At:** {{ $registration->created_at->format('Y-m-d H:i:s') }} Thanks,
{{ config('app.name') }}