@extends('layouts.admin') @section('title', 'Event Details') @section('content_header')

Event Details

@stop @section('content')

{{ $event->title }}

@if($event->image) {{ $event->title }} @endif

Mode: {{ $event->mode }}

Date: {{ $event->date }}

Time: {{ $event->time }}

Location: {{ $event->location }}

Duration: {{ $event->duration }}

Description: {{ $event->description }}

SEO Settings

{{ $event->meta_title ?: 'Not set' }}

{{ $event->meta_description ?: 'Not set' }}

Associated Speakers

@if($event->speakers->count() > 0) @foreach($event->speakers as $speaker) @endforeach @else @endif
Speaker Name Designation Description LinkedIn
@if($speaker->image) {{ $speaker->name }} @endif {{ $speaker->prefix }} {{ $speaker->name }} {{ $speaker->designation }} {{ Str::limit($speaker->description, 100) }} @if($speaker->linkedin) LinkedIn @else - @endif
No speakers are associated with this event.
@if($event->moments->count() > 0)

Event Moments

@foreach($event->moments as $moment)
Event Moment
@if($moment->caption)

{{ $moment->caption }}

@endif Sort Order: {{ $moment->sort_order }}
@endforeach
@endif @stop