{{__('messages.monthly_revenue')}}

{{ __('messages.recent_provider') }}

{{__('messages.view_all')}}
    @foreach($data['dashboard']['new_provider'] as $provider)
  • user-icon
    {{!empty($provider->display_name) ? $provider->display_name : '-'}}
    {{round($provider->getServiceRating->avg('rating'), 1)}}
  • @endforeach

{{ __('messages.recent_customer') }}

{{__('messages.view_all')}}
    @foreach($data['dashboard']['new_customer'] as $customer)
  • user-icon
    {{!empty($customer->display_name) ? $customer->display_name : '-'}}
    {{($customer->created_at)}}
  • @endforeach

{{__('messages.recent_booking')}}

{{__('messages.view_all')}}
    @foreach($data['dashboard']['upcomming_booking'] as $booking)
  • user-icon
    #{{$booking->id}}
    {{($booking->date)}}
    {{$booking->status}}
  • @endforeach