@extends('layouts.main') @section('page-title') {{ __('Dashboard') }} @endsection @push('scripts') @endpush @section('content')
layer

{{ auth()->user()->name }}

{{ __('The keys to the kingdom are in your hands – welcome to your Super Admin Dashboard!') }}

@if (module_is_active('LandingPage')) @include('landingpage::layouts.dash_qr') @endif

{{ __('Total Customers') }}

{{ __('Paid Customers') }}

{{ $user['total_paid_user'] }}

{{ $user->total_user }}

{{ __('Total Orders') }}

{{ __('Order Amount') }}

{{ super_currency_format_with_sym($user['total_orders_price']) }}

{{ $user->total_orders }}

{{ __('Total Plans') }}

{{ __('Popular Plan') }}

{{ !empty($user->popular_plan) ? $user->popular_plan->name : '' }}

{{ $user->total_plans }}

{{ __('Recent Order') }}

@endsection @if (module_is_active('LandingPage')) @include('landingpage::layouts.dash_qr_scripts') @endif