@extends('dashboard/layout.app') @section('title', 'BettrAi | Appointment') @section('content')

Appointment Reports

@csrf
@if(!empty($appointments)) @foreach ($appointments as $item) @php $patient_name = null; @endphp @if($item->patient_fname != "" && $item->patient_lname != "") @php $patient_name = EncDecHelper::dec_string($item->patient_lname).", ".EncDecHelper::dec_string($item->patient_fname)."(".$item->patient_id.")"; $provider_name = EncDecHelper::dec_string($item->provider_lname).", ".EncDecHelper::dec_string($item->provider_fname); @endphp @endif @php $date = new DateTime($item->event_from,new DateTimeZone('UTC')); $date->setTimezone(new DateTimeZone($user_tz)); $date = $date->format('m-d-Y h:i A'); @endphp @endforeach @endif
Patient Name Physician Location Date Appointment Type Purpose
N/A N/A N/A
@endsection