@extends('backend.admin-master') @section('site-title') {{__('Dashboard')}} @endsection @section('style') @endsection @section('content')

{{ $total_admin }}

{{ __('Total Admin') }}

{{ $total_seller }}

{{ __('Total Seller') }}

{{ $total_buyer }}

{{ __('Total Buyer') }}

{{ float_amount_with_currency_symbol($total_earning) }}

{{ __('Total Earning') }}

{{ float_amount_with_currency_symbol($total_tax) }}

{{ __('Total Tax') }}

{{ $total_order }}

{{ __('Total Order') }}

{{ $pending_order }}

{{ __('Order Pending') }}

{{ $cancel_order }}

{{ __('Order Cancel') }}

{{ $total_service }}

{{ __('Total Service')}}

{{ $pending_service }}

{{ __('Pending Service')}}

{{ $pending_payout_request }}

{{ __('New Payout Request') }}

{{ $new_user_today }}

{{ __('New User Today') }}

{{ __('Most Viewed Services') }}

@foreach($most_viewed_10_services as $key=>$service) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Price')}} {{__('View')}} {{__('Details')}}
{{ $key+1 }} {{ $service->title }} {{ float_amount_with_currency_symbol($service->price) }} {{ $service->view }} @if(!empty($service->id)) @endif

{{ __('Most Ordered Services') }}

@foreach($most_sell_10_services as $service) @endforeach
{{__('ID')}} {{__('Title')}} {{__('Price')}} {{__('View')}} {{__('Details')}}
{{ optional($service->service)->id }} {{ optional($service->service)->title }} {{ float_amount_with_currency_symbol(optional($service->service)->price) }} {{ optional($service->service)->view }} @if(!empty($service->service)) @endif
{{ __('Monthly Income Overview') }}
{{ __('Daily Income Overview Last 30 Days') }}
{{ __('Monthly Order Overview') }}
{{ __('Daily Order Overview Last 30 Days') }}
@endsection @php @endphp @section('script') @endsection