@extends('admin.master', ['menu' => 'dashboard'])
@section('title', isset($title) ? $title : '')
@section('content')
@can(['membership'])
{{ __('Total Active Membership') }}
{{ $totalMembershipSale }}
{{ __('Today Membership (All)') }}
{{ $totalTodayMembership }}
{{ \Carbon\Carbon::now()->format('F') . __(' Membership') }}
{{ $currentMonthMembership }}
{{ __('Yearly Membership') }}
{{ $currentYearMembership }}
@endcan
@can('category-list')
{{ __('Total Sale') }}
{{ $totalProductSale }}
{{ __('Today Order') }}
{{ $todayProductOrder }}
{{ \Carbon\Carbon::now()->format('F') . __(' Sale') }}
{{ $totalCurrentMonthProductSale }}
{{ __('Yearly Sale') }}
{{ $totalLatYearProductSale }}
{{ __('Orders') }}
{{ $totalOrders }}
{{ __('Pending Orders') }}
{{ $pendingOrders }}
{{ __(' Delivered Orders') }}
{{ $deliveredOrders }}
{{ __('Returned Orders') }}
{{ $returnedOrders }}
{{ __('Products') }}
{{ $totalProducts }}
{{ __('Customers') }}
{{ $totalUsers }}
{{ __('Categories') }}
{{ $totalCategories }}
{{--
{{ __('Brands') }}
{{ $totalBrands }}
--}}
{{ __('Online Transactions') }}
{{ __('JD') . $totalOnlineTransaction }}
{{--
{{ __('Paypal Transactions') }}
{{ __('JD') . $totalPaypalTransaction }}
--}}
{{--
{{ __('Stripe Transactions') }}
{{ __('JD') . $totalStripeTransaction }}
--}}
{{--
{{ __('Razorpay Transactions') }}
{{ __('JD') . $totalRazorpayTransaction }}
--}}
{{--
{{ __('Bank Transactions') }}
{{ __('JD') . $totalOnlineTransaction }}
--}}
{{ __('Reviews') }}
{{ $getTotalReviews }}
@endcan
@can('cms-list')
{{ __('Blogs') }}
{{ $getTotalBlogs }}
{{ __('Subscribers') }}
{{ $getTotalSubscribers }}
@endcan
@can('membership')
@endcan
@can('category-list')
@endcan
@can('category-list')
@endcan
@can('membership')
@endcan
@push('post_scripts')
@endpush
@endsection