@include('includes/header_start') @include('physicians/elements/header_end')

Schedule a Call

Please choose a date and time below.

With supporting text below as a natural lead-in to additional content.

@csrf
@if ($errors->has('patient_id')) {{ $errors->first('patient_id') }} @endif
@if ($errors->has('call_date')) {{ $errors->first('call_date') }} @endif
{{-- --}} @if ($errors->has('call_time')) {{ $errors->first('call_time') }} @endif
@include('physicians.calls.elements.calls-panel')

View Scheduled Calls

@foreach($callRequests as $call) @if($call->status === 'Pending') @elseif($call->status === 'Physician Request Sent') @elseif($call->status === 'Physician Request Declined') @elseif($call->status === 'Accepted by Patient') @elseif($call->status === 'Declined by Patient') @else() @endif @endforeach
Patient Name Date Time Status
{{ $patient->first_name }} {{ $patient->last_name }} {{ date('m/d/Y', strtotime($call->call_date)) }} {{ $call->call_time }}{{ $call->status }}{{ $call->status }}{{ $call->status }}{{ $call->status }}{{ $call->status }}
@include('includes/footer_start') @include('includes/footer_end')