@extends('admin.layout.master') @section('title') Norman Admin | Dashboard @endsection @section('content')

Dashboard

Registered User
{{$users}}
Registered Coaching
{{$coachingUsers}}
Sales through Coaching
{{$coachingSalesCount}}
Sales through Company Product
{{$companySalesCount}}
Question Added by Coaching
{{$coachingQuesCount}}
Package Added by Coaching
{{$coachingPackagesCount}}
Question Added by Company
{{$companyQuesCount}}
Package Added by Company
{{$companyPackagesCount}}

Net Revenue By Month

@if($allRevenue) @foreach($allRevenue as $key=>$revenue) @endforeach @endif

{{number_format($total, 2)}}

Revenue Per Week

Order Summary

Salse Order Order Count Amount (INR)
Today {{$todaysSales->total}} {{($todaysSales->total_amount == '') ? 0 : $todaysSales->total_amount}}
Yesterday {{$yesterdaySales->total}} {{($yesterdaySales->total_amount == '') ? 0 : $yesterdaySales->total_amount}}
Week {{$weekSales->total}} {{($weekSales->total_amount == '') ? 0 : $weekSales->total_amount}}
Month {{$monthSales->total}} {{($monthSales->total_amount == '') ? 0 : $monthSales->total_amount}}
Year {{$yearSales->total}} {{($yearSales->total_amount == '') ? 0 : $yearSales->total_amount}}

Order Status

@endsection @section('scripts') @endsection