@extends('layouts.app') @section('content')
{{ ucfirst($registration->reg_type) }} Registration Details
@if($registration->reg_type === 'speaker')
Personal Information
Full Name:{{ $registration->speaker_full_name }}
Title/Position:{{ $registration->speaker_title }}
Organization:{{ $registration->speaker_org }}
Email:{{ $registration->speaker_email }}
Phone:{{ $registration->speaker_phone }}
Country:{{ $registration->speaker_country }}
LinkedIn/Website:{{ $registration->speaker_link ?: 'Not provided' }}
Speaking Interest
Areas of Interest:{{ $registration->speaker_interest ? implode(', ', json_decode($registration->speaker_interest)) : 'Not specified' }}
Proposed Title:{{ $registration->speaker_title_proposed ?: 'Not provided' }}
Spoken Before:{{ $registration->speaker_spoken_before ?: 'Not specified' }}
Technical Requirements
AV Needs:{{ $registration->speaker_av_needs ?: 'None specified' }}
Abstract/Summary
{{ $registration->speaker_abstract ?: 'Not provided' }}
Relevance to Convention Theme
{{ $registration->speaker_relevance ?: 'Not provided' }}
@if($registration->speaker_bio_headshot_path)
Bio & Headshot
View/Download Bio
@endif @elseif($registration->reg_type === 'partner')
Organization Information
Organization:{{ $registration->partner_org }}
Sector/Industry:{{ $registration->partner_sector }}
Website:{{ $registration->partner_web ?: 'Not provided' }}
Country:{{ $registration->partner_country }}
Contact Information
Contact Person:{{ $registration->partner_contact }}
Title/Position:{{ $registration->partner_title }}
Email:{{ $registration->partner_email }}
Phone:{{ $registration->partner_phone }}
Partnership Details
Partnership Type:{{ $registration->partner_type ? implode(', ', json_decode($registration->partner_type)) : 'Not specified' }}
Commitment Level:{{ $registration->partner_commitment ?: 'Not specified' }}
Areas of Collaboration
{{ $registration->partner_collab ?: 'Not provided' }}
@if($registration->partner_profile_path)
Company Profile
View/Download Profile
@endif @elseif($registration->reg_type === 'exhibitor')
Company Information
Company/Organization:{{ $registration->exh_org }}
Contact Person:{{ $registration->exh_contact }}
Title/Position:{{ $registration->exh_title }}
Email:{{ $registration->exh_email }}
Phone:{{ $registration->exh_phone }}
Website:{{ $registration->exh_web ?: 'Not provided' }}
Industry/Category:{{ $registration->exh_category ?: 'Not specified' }}
Exhibition Details
Booth Size:{{ $registration->exh_booth ?: 'Not specified' }}
Power/Internet Needs:{{ $registration->exh_power ?: 'None specified' }}
Staff Attending:{{ $registration->exh_staff ?: 'Not specified' }}
Products/Services Description
{{ $registration->exh_desc ?: 'Not provided' }}
@if($registration->exh_logo_path)
Logo/Branding Material
View/Download Material
@endif @elseif($registration->reg_type === 'volunteer')
Personal Information
Full Name:{{ $registration->vol_name }}
Email:{{ $registration->vol_email }}
Phone:{{ $registration->vol_phone }}
Gender:{{ $registration->vol_gender ?: 'Not specified' }}
Age Group:{{ $registration->vol_age ?: 'Not specified' }}
Country:{{ $registration->vol_country ?: 'Not specified' }}
Volunteer Details
Areas of Interest:{{ $registration->vol_interest ? implode(', ', json_decode($registration->vol_interest)) : 'Not specified' }}
Days Available:{{ $registration->vol_days ?: 'Not specified' }}
Previous Volunteer Experience
{{ $registration->vol_experience ?: 'No previous experience mentioned' }}
Emergency Contact
Name:{{ $registration->em_name ?: 'Not provided' }}
Relationship:{{ $registration->em_relationship ?: 'Not provided' }}
Phone:{{ $registration->em_phone ?: 'Not provided' }}
@elseif($registration->reg_type === 'delegate')
Personal Information
Full Name:{{ $registration->del_full_name }}
Email:{{ $registration->del_email }}
Phone:{{ $registration->del_phone }}
Country:{{ $registration->del_country }}
Organization:{{ $registration->del_organization ?: 'Not provided' }}
Job Title:{{ $registration->del_job_title ?: 'Not provided' }}
Registration Details
Delegate Category:{{ $registration->del_category ?: 'Not specified' }}
Pass Type:{{ $registration->del_pass_type ?: 'Not specified' }}
Delegate Type:{{ $registration->del_delegate_type ?: 'Not specified' }}
Fee (USD):{{ $registration->del_fee_usd ?: 'Not specified' }}
Payment Method:{{ $registration->del_payment_method ?: 'Not specified' }}
Payment Reference:{{ $registration->del_payment_reference ?: 'Not provided' }}
Accommodation
Assistance Required:{{ $registration->del_accommodation_assistance ?: 'Not specified' }}
Hotel Category:{{ $registration->del_hotel_category ?: 'Not specified' }}
Check-in Date:{{ $registration->del_checkin ?: 'Not specified' }}
Check-out Date:{{ $registration->del_checkout ?: 'Not specified' }}
Additional Options
Excursion:{{ $registration->del_excursion ?: 'Not specified' }}
Digital Signature:{{ $registration->del_signature ?: 'Not provided' }}
Signature Date:{{ $registration->del_date ?: 'Not provided' }}
@if($registration->del_special_requirements)
Special Requirements
{{ $registration->del_special_requirements }}
@endif
Consent & Confirmation
Information Accurate:{{ $registration->del_info_accurate ? 'Yes' : 'No' }}
Contact Consent:{{ $registration->del_contact_consent ? 'Yes' : 'No' }}
Privacy Consent:{{ $registration->del_privacy_consent ? 'Yes' : 'No' }}
@endif
Registration Information
Registration Type:{{ ucfirst($registration->reg_type) }}
Submitted:{{ $registration->created_at->format('F j, Y \a\t g:i A') }}
Last Updated:{{ $registration->updated_at->format('F j, Y \a\t g:i A') }}
@endsection