@extends('admin.layouts.app') @section('content') {{-- Page Content --}}
{{-- Failed --}} @if (Session::has("failed")) @endif {{-- Success --}} @if(Session::has("success")) @endif
{{-- This Month Income --}}
{{ __('This Month Income') }}
{{ currency($this_month_income) }}
{{-- Today Income --}}
{{ __('Today Income') }}
{{ currency($today_income) }}
{{-- Overall Users --}}
{{ __('Overall Users') }}
{{ $overall_users }}
{{-- Today Users --}}
{{ __('Today Users') }}
{{ $today_users }}
{{-- Sales Chart --}}

{{ __('Total Sales Overview') }}

{{-- Users Chart --}}

{{ __('New Users Overview') }}

{{-- Footer --}} @include('admin.includes.footer')
{{-- Custom JS --}} @section('custom-js') @endsection @endsection