@extends('layout.app') @section('title', 'Waiting Room | Dashboard') @section('custom-css') @endsection @section('content')

{{ $todayBookingsCount }}

{{-- +0.5% --}} @if ($percentageChange > 0) +{{ number_format($percentageChange, 1) }}% @else {{ number_format($percentageChange, 1) }}% @endif
{{ __('translations.Today Appointments') }}

{{ $bookingsCount }}

{{ __('translations.Total Appointments') }}

{{ $cancelBookingsCount }}

{{-- -2.0% --}}
{{ __('translations.Cancelled Appointments') }}

${{ $bookingsBalanceCount }}

{{ __('translations.Total Earning') }}

{{ __('translations.Appointments Overview') }}

{{ __('translations.Total Appointments') }}
{{ __('translations.Completed') }}
{{ __('translations.Cancelled') }}

{{ __('translations.Earnings') }}

{{--
239
+0.4%
--}}
${{ $bookingsBalanceCount }}

{{ Auth::guard('business')->user()->name }}

{{ Auth::guard('business')->user()->location }}

{{ __('translations.Doctor Revenue') }} {{ __('translations.Revenue Insights of Top 5 Doctors (by Earnings)') }}

@foreach ($topDoctors as $doctor)
{{ number_format($doctor['percentage'], 1) }}% {{ __('translations.Complete') }}
{{ $doctor['name'] }}
${{ number_format($doctor['total_revenue'], 2) }}
@endforeach

{{ __('translations.History & Logs') }}

{{--
--}}
{{--
1
Test 28 has created booking # 1166 by time slot

8min ago

--}} @forelse ($recentActivities as $index => $activity)
{{ $index + 1 }}
{{ $activity->message }}

{{ $activity->created_at->diffForHumans() }}

@empty
No recent activity found.
@endforelse

{{ __('translations.Bookings Overview') }}

{{ __('translations.Total Bookings') }}
{{ __('translations.Completed') }}
{{ __('translations.Cancelled') }}
@endsection @section('custom-script') @endsection