@extends('doctor.layouts.app') @section('content')

Clinical Events

@forelse($events as $event) @empty @endforelse
Title & Classification Timeline Location Status Options

{{ $event->title }}

Clinical Session

{{ $event->start_datetime->format('M d, Y') }}

{{ $event->start_datetime->format('h:i A') }}

{{ $event->location }}
@if($event->start_datetime > now()) Scheduled @else Historical @endif

No events located in the clinical repository.

@if($events->hasPages())
{{ $events->links() }}
@else
Global Repository Control Listing {{ $events->count() }} records
@endif
@endsection