@extends ('layouts.template') @section('content')
Key Numbers
{{$pro->get_patients_count_as_mcp()}} Pros
{{$pro->get_notes_pending_signature_count_as_mcp()}} Notes Pending Signature
{{$pro->get_notes_pending_billing_count_as_mcp()}} Notes Pending Billing
{{$pro->get_cancelled_appointments_pending_acknowledgement_count_as_mcp()}} Cancelled Appts. Pending Review
{{$pro->get_cancelled_bills_awaiting_review_count_as_mcp()}} Cancelled Bills Pending Review
Practice Management
Revenue Cycle Management
${{friendly_money($reimbursement['currentBalance'])}} Current balance
${{friendly_money($reimbursement['nextPaymentAmount'])}} Processing
@if($pro->pro_type === 'ADMIN')
Bills & Claims
{{$businessNumbers['notesWithBillsToResolve']}} Notes with bills to resolve
{{$businessNumbers['notesPendingBillingClosure']}} Notes pending billing closure
@endif
Today: @{{ selectedDate }}
@{{ event.proInitials }}
@{{ event.proName }}  /  @{{ event.friendlyStartTime }} - @{{ event.friendlyEndTime }} @{{ event.timezone }}  /  @{{ event.title }}
@{{ event.clientName }} @{{ event.clientSummary }}
Confirmation pending
Confirmed by the patient
Status: @{{ event.status }}
| Edit Appointment
Coverage Status: @{{ event.coverage }}
@{{ event.inHowManyHours }}
You have no appointments on @{{ selectedDate }} You have no appointments on @{{ selectedDate }} with status @{{ filterStatus }}
Please select a date from the calendar on the left
@if(count($newMCPAssociations))

New Patients

@foreach($newMCPAssociations as $assoc)
You are now the MCP for {{$assoc->patient->displayName()}} patient->nextAppointment(); ?> @if($nextAppt)
Appt. {{$nextAppt->pro->displayName()}} on {{friendlier_date_time($nextAppt->raw_date . ' ' . $nextAppt->raw_start_time)}}
@if($nextAppt->status === 'PENDING') {{-- WIP: ALIX overhaul --}}
Confirmation pending
@endif @if($nextAppt->status === 'CONFIRMED')
Confirmed by the patient
@endif @if($nextAppt->status === 'CANCELLED')
Cancelled
@endif @endif
Ack.
@endforeach
@endif @if(count($newNAAssociations))

New Patients

@foreach($newNAAssociations as $assoc)
You are now the Care Coordinator for {{$assoc->patient->displayName()}} patient->nextAppointment(); ?> @if($nextAppt)
Appt. {{$nextAppt->pro->displayName()}} on {{friendlier_date_time($nextAppt->raw_date . ' ' . $nextAppt->raw_start_time)}}
@if($nextAppt->status === 'PENDING') {{-- WIP: ALIX overhaul --}}
Confirmation pending
@endif @if($nextAppt->status === 'CONFIRMED')
Confirmed by the patient
@endif @if($nextAppt->status === 'CANCELLED')
Cancelled
@endif @endif
Ack.
@endforeach
@endif
@if(count($mcpClientMemos))

New Patients Memos (MCP)

@foreach($mcpClientMemos as $memo) @endforeach
Patient Memo Created
{{$memo->name_first}} {{$memo->name_last}} {!! $memo->content !!} {{friendlier_date_time($memo->created_at)}} Ack.
@endif @if(count($naClientMemos))

New Patients Memos (NA)

@foreach($naClientMemos as $memo) @endforeach
Patient Memo Created
{{$memo->name_first}} {{$memo->name_last}} {!! $memo->content !!} {{friendlier_date_time($memo->created_at)}} Ack.
@endif
@endsection