{{ date('l',strtotime($event->start_at)) }} |
{{ date('g:i a',strtotime($event->start_at)) }} |
{{ $event->name }} |
{{ ucwords(strtolower($event->description)) }} |
@if($event->user_id > 0)
{{ ucfirst($event->user->firstname) }} {{ ucfirst(substr($event->user->lastname,0,1)) }}
- {{ ucwords($event->user->city) }} {{ ucwords($event->user->state) }}
@else
No speaker yet
@endif
|
@if(\Auth::user()->my_schedule()->where('event_id', $event->id)->first())
@else
@endif
|
@endforeach