Dashboard

{{ __('Welcome to Dashboard') }}

Reload Data
@can(config('auth.abilities.total-sites'))
{{ $total_sites }}
Total Sites
@endcan @can(config('auth.abilities.total-niches'))
{{ $total_niches }}
Total Niches
@endcan @can(config('auth.abilities.total-customers'))
{{ $total_customers }}
Total Customers
@endcan @can(config('auth.abilities.earn-by-today'))
{{ format_amount($earn_by_today) }}
Earn By Today
@endcan
@can(config('auth.abilities.chart-grow-report'))

{{ __('Grow Report') }}

{{ format_amount($earn_by_this_month) }}
This Month
{{ format_amount($earn_by_last_month) }}
Last Month
@foreach ($years as $year) @endforeach
@endcan
@can(config('auth.abilities.earn-by-today'))

Transactions

@forelse($latest_transactions as $latest_transaction)
Midone - HTML Admin Template
{{ $latest_transaction->customer->name }}
{{ $latest_transaction->formatted_updated_at }}
{{ $latest_transaction->formatted_grand_total }}
@empty

No Transaction

@endforelse @if($latest_transactions->count()) View More @endif
@endcan