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

Speaker Details

@stop @section('content')

{{ $speaker->prefix }} {{ $speaker->name }}

@if($speaker->image) {{ $speaker->name }} @endif

Designation: {{ $speaker->designation }}

Description: {{ $speaker->description }}

@if($speaker->linkedin)

LinkedIn: {{ $speaker->linkedin }}

@endif

Associated Events

@forelse($speaker->events as $event) @empty @endforelse
Event Title Date Location
{{ $event->title }} {{ $event->date }} {{ $event->location }}
This speaker is not associated with any events.
@stop