@extends('layouts.admin') @section('title', 'Dashboard') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent

Today Orders

{{$todayOrder->count()}}

This Month Orders

{{$thisMonthOrder->count()}}

This Year Orders

{{$thisYearOrder->count()}}

Today Sales

{{$todayOrder->sum('order_total')}}

This Month Sales

{{$thisMonthOrder->sum('order_total')}}

This Year Sales

{{$thisYearOrder->sum('order_total')}}

Today Customers

{{$todayCustomer}}

This Month Customers

{{$thisMonthCustomer}}

Total Customers

{{$totalCustomer}}

Today Subscribers

{{$todaySubscriber}}

This Month Subscribers

{{$thisMonthSubscriber}}

Total Subscribers

{{$totalSubscriber}}

@endsection @push('js') @endpush