@extends('coach.layouts.contentNavbarLayout') @section('title', 'Dashboard') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('page-script') @endsection @section('content')
Here's what's happening with your appointments today.
{{ now()->format('h:i A') }}
{{ $callType }}
{{ $appointment->employee->name }}
{{ $appointment->speciality->name_en }}
You don't have any appointments scheduled for today.
{{ $callType }}
{{ $appointment->employee->name }}
{{ $appointment->speciality->name_en }}
You don't have any appointments scheduled for tomorrow.
| Appointment # | Date | Time | Employee | Type | Status |
|---|---|---|---|---|---|
| {{ $appointment->appointment_number }} | {{ $appointment->appointment_date->format('M d, Y') }} | {{ date('h:i A', strtotime($appointment->time_start)) }} | {{ $appointment->employee->name }} | @if(isset($appointment->appointment_type)) @if($appointment->appointment_type == 0) Audio @else Video @endif @else N/A @endif | @php $statusClass = $appointment->status === 'completed' ? 'success' : ($appointment->status === 'cancelled' ? 'danger' : ($appointment->status === 'booked' ? 'primary' : ($appointment->status === 'confirmed' ? 'info' : ($appointment->status === 'in_progress' ? 'warning' : ($appointment->status === 'not_attended' ? 'dark' : 'secondary'))))); @endphp {{ ucfirst(str_replace('_', ' ', $appointment->status)) }} |