@extends('user.layouts.app') @push('title') {{ __('Dashboard') }} @endpush @section('content')

{{ __('Customers') }}

{{ $totalCustomer }}

{{ __('Subscriptions') }}

{{ $totalSubscription }}/{{ showPrice($totalSubscriptionSales) }}

{{ __('Monthly Recurring Revenue') }}

{{ showPrice($monthlyRecurringRevenue) }}

{{ __('Total Sales') }}

{{ showPrice($totalSales) }}

{{ __('Total Subscription') }}

{{$totalSubscription}}

0%

{{ __('VS LAST WEEK') }}

{{ __('Activity') }}

{{ __('Product Sold Out') }}

{{ __('Top Selling Plans') }}

@forelse($TopSellingPlans as $plan) @empty @endforelse
{{ __('Plan Name') }}
{{ __('Customers') }}
{{ $plan->plan_name }} {{ $plan->users_email }}
{{ __('No Data Found') }}

{{ __('Monthly Subscriber') }}

@forelse($monthlySubscriber as $item) @empty @endforelse
{{ __('Month') }}
{{ __('Subscriber') }}
{{ $item['month'] }} {{ $item['subscriber'] }}
{{ __('No Data Found') }}

{{ __('Revenue Daily Stats') }}

{{ __("Today's Sale") }} {{ showPrice($totalSalesAmountToday) }}
{{ __("Yesterday's Sale") }} {{ showPrice($totalSalesAmountYesterday) }}
{{ __('Daily Average') }} {{ showPrice($dailyAverage) }}

{{ __('Revenue Monthly State') }}

@forelse($monthlyRevenue as $item) @empty @endforelse
{{ __('Month') }}
{{ __('Revenue') }}
{{ $item['month'] }} {{ showPrice($item['revenue']) }}
{{ __('No Data Found') }}
@endsection @push('script') @endpush