{{ __('Total Revenue') }}

{{ $currency }}{{ $total_revenue }}

{{ __('Monthly Customers') }}

{{ $monthly_customers }}

{{ __('Monthly Customers') }}

{{ $monthly_customers }}

{{ Carbon\Carbon::now()->subMonth()->isoFormat('MMM') }} 01 - {{ Carbon\Carbon::now()->isoFormat('MMM') }} 01

{{ __('Monthly Revenue') }}

{{ $currency }} {{ $revenue_monthly }}

{{ __('Monthly Revenue') }}

{{ $currency }}{{ $revenue_monthly }}

{{ Carbon\Carbon::now()->subMonth()->isoFormat('MMM') }} 01 - {{ Carbon\Carbon::now()->isoFormat('MMM') }} 01

{{ __('Monthly Transaction') }}

{{ $monthly_transaction }}

{{ __('Monthly Transaction') }}

{{ $monthly_transaction }}

{{ Carbon\Carbon::now()->subMonth()->isoFormat('MMM') }} 01 - {{ Carbon\Carbon::now()->isoFormat('MMM') }} 01

{{ __('Latest Transactions') }}

@foreach ($all_transactions as $transaction) @endforeach
{{ __('Trx Id') }} {{ __('Payment Method') }} {{ __('Amount') }} {{ __('Status') }} {{ __('Created At') }}
{{ $transaction->trx_id }} {{ $transaction->payment_method }} {{ $transaction->amount }} @if ($transaction->status == 'approved') {{ __('Paid') }} @elseif($transaction->status == 'pending') {{ __('Unpaid') }} @endif {{ $transaction->created_at->toDateString() }}

Recent Customers

    @foreach ($all_customers as $customer)
  • {{ $customer->name }}

    {{ $customer->email }}
    {{ $customer->created_at->isoFormat('ll') }}
  • @endforeach