@extends('layout.app') @section('title', 'Clinic Profile | Waiting Room') @section('content')

{{ $userData->name }}

  • {{ $userData->specialities->first()->name }}
  • {{ Auth::guard('business')->user()->location }}
  • {{ Auth::guard('business')->user()->email }}
{{-- @dd($userData) --}}

${{ $totalEarning }}

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

0

{{ __('translations.Profile Visits') }}

{{ $totalAppointment }}

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


Warning: Undefined variable $percentageChange in /home/webwaitingroom/public_html/resources/views/pages/barbers/profile.blade.php on line 98

Warning: Undefined variable $percentageChangeFormatted in /home/webwaitingroom/public_html/resources/views/pages/barbers/profile.blade.php on line 98
+%

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

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

$36,899

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

$725

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

$291

Upcomming Appointments

    @php $border = [ 'border-dark', 'border-success', 'border-primary', 'border-danger', 'border-warning', ]; @endphp @forelse ($latestAppointments as $key => $latestAppointment)
  • {{ $latestAppointment?->created_at ? Carbon\Carbon::parse(explode(' ', $latestAppointment->created_at)[1])->format('h:i') : null }}
    {{ $latestAppointment->getUser->first_name . ' ' . $latestAppointment->getUser->last_name }} appointment with {{ $latestAppointment->Doctor->name }}
  • @empty
  • No Appointment Yet
  • @endforelse
{{ __('translations.Total Bookings') }}
{{ __('translations.Completed') }}
{{ __('translations.Cancelled') }}
@endsection @section('custom-script') @endsection