@extends('layouts.frontendapp') @section('title', config('app.name')) @section('content')
Back

{{ $attendee->full_name ?? 'N/A' }}

{{ $attendee->roles->pluck('name')->join(', ') }} {{$attendee->company ?? ''}} {{$attendee->designation ?? ''}}

Bio

{{ $attendee->bio ?? 'N/A' }}

Email

{{ $attendee->email ?? 'N/A' }}

Phone

{{ $attendee->phone ?? 'N/A' }}

Designation

{{ $attendee->designation ?? 'N/A' }}

Company

{{ $attendee->company ?? 'N/A' }}

Website

@if(!empty($attendee->website_url))

{{ $attendee->website_url }}

@endif

Location

{{ $attendee->place ?? 'N/A' }}

@if($attendee->gdpr_consent == 1)
Social

LinkedIn

@if(!empty($attendee->linkedin_url)) {{ $attendee->linkedin_url }} @else N/A @endif

Facebook

@if(!empty($attendee->facebook_url)) {{ $attendee->facebook_url }} @else N/A @endif

Instagram

@if(!empty($attendee->instagram_url)) {{ $attendee->instagram_url }} @else N/A @endif

Twitter

@if(!empty($attendee->twitter_url)) {{ $attendee->twitter_url }} @else N/A @endif

@endif
@if(!empty($sessions))
Upcoming Sessions
@forelse($sessions as $session)
{{ $session->title ?? '' }}
{{ \Carbon\Carbon::parse($session->start_time)->format('M d, Y h:i A') }} {{ $session->location ?? '' }}
@empty
No sessions available
@endforelse
@endif @if($event)
{{ $event->title ?? 'Event' }}
@if(!empty($event->photo) && $event->photo->file_path) Event @else Event @endif

{{ $event->location ?? '' }}

{{ $event->description ?? '' }}

@endif
@endsection