@extends('layouts.app') @section('title', __('app.dashboard')) @section('page_title', __('app.welcome') . ', ' . auth()->user()->name) @section('content')
{{ __('app.patients') }}
{{ __('app.appointments') }} ({{ __('app.today') ?? 'Today' }})
{{ __('app.pending_invoices') ?? 'Pending Invoices' }}
{{ __('app.month_revenue') ?? 'Month Revenue' }}
| {{ __('app.patient') ?? 'Patient' }} | {{ __('app.therapist') ?? 'Therapist' }} | {{ __('app.date') }} | {{ __('app.time') }} | {{ __('app.status') }} |
|---|---|---|---|---|
| {{ $appointment->patient->fullName() }} | {{ $appointment->user->name }} | {{ $appointment->appointment_date->format('Y-m-d') }} | {{ $appointment->appointment_date->format('H:i') }} | {{ $appointment->status }} |
| {{ __('app.no_appointments') ?? 'No upcoming appointments' }} | ||||