@extends('adminlte::page') @section('title', 'View Webinar Registration') @section('content_header')

Webinar Registration Details

@stop @section('content')

Registration #{{ $eventApplication->id }}

Personal Information
First Name: {{ $eventApplication->first_name }}
Last Name: {{ $eventApplication->last_name }}
Email: {{ $eventApplication->email }}
Phone: {{ $eventApplication->phone }}
Company Name: {{ $eventApplication->company_name ?? 'N/A' }}
Country: {{ $eventApplication->country ?? 'N/A' }}
State: {{ $eventApplication->state ?? 'N/A' }}
City: {{ $eventApplication->city ?? 'N/A' }}
Webinar Information
Webinar/Event: {{ $eventApplication->event_type }}
Marketing Consent: @if($eventApplication->marketing_consent) Yes @else No @endif
Registration Date: {{ $eventApplication->created_at->format('M d, Y h:i A') }}
Actions
@csrf @method('DELETE')
@stop @section('css') @stop