@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) {{-- Custom CSS --}} @section('css') @endsection @section('content')
{{-- This Month Income --}}
{{ __('This Month Income') }}
{{ $currency->symbol }}{{ number_format($thisMonthIncome, 2) }}
{{-- Today Income --}}
{{ __('Today Income') }}
{{ $currency->symbol }}{{ number_format($today_income, 2) }}
{{-- Overall Users --}}
{{ __('Overall Users') }}
{{ $overall_users }}
{{-- Today User --}}
{{ __('Today Users') }}
{{ $today_users }}
{{-- Total Earnings, vCard creation and Store creation --}}
{{ __('Overview') }}
{{ __('Earnings') }}
{{ $currency->symbol }}{{ number_format($totalEarnings, 2) }}
{{ __('vCards') }}
{{ $totalvCards }}
{{ __('Stores') }}
{{ $totalStores }}
{{-- Current Week Sales --}}
{{-- Title --}}
{{ __('Current Week Sales') }}
{{-- Sales Overwise --}}
{{-- Title --}}
{{ __('Sales Overview') }}
{{-- Chart --}}
{{-- Users Overwise --}}
{{-- Title --}}
{{ __('Users Overview') }}
{{-- Chart --}}
@include('admin.includes.footer')
{{-- Custom JS --}} @section('scripts') @endsection @endsection