These events will occur within in the next 2-3 hours. Current time is: {{date('g:i a',strtotime(now()))}}. (Refresh)
@if($events)Day | Time | Title | Location | Type | Starts in |
---|---|---|---|---|---|
{{ $event->start_at->format('l')}} | {{ $event->start_at->format('g:i A')}} | @if(\Auth::user()) {{ $event->name}} @else {{ $event->name}} @endif | @if($event->location) @if(\Auth::user()) {{ $event->location->room }} @else {{ $event->location->name }} @endif @else Not Specified @endif | {!! $meeting_type !!} | @if(date('Y-m-d',strtotime(env($settings->where('key', 'EVENT_START_DATE')->first()->value))) <= now()) {{ $event->start_at->diff(\Carbon\Carbon::now())->format('%H') }} hr, {{ $event->start_at->diff(\Carbon\Carbon::now())->format('%I') }} min @else N/A @endif |
{{date('h:i a',strtotime($event->start_at))}}
@if(\Auth::user())
{{$event->name}}
@else
{{strtoupper($event->name)}}
@endif
@if($event->location)
Location: {{ $event->location->room }} @else Location: Not Specified @endif |