@extends('adminlte::page') @section('title', 'View Webinar Registration') @section('content_header')
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/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') }} |