@extends('admin.includes.master-admin') @section('content')

Admin Dashboard!

{{ \App\Product::count() }}

Total Products!

View All
{{ \App\Order::where('payment_status','Completed')->where('status','pending')->count() }}

Orders Pending!

View All
{{ \App\Order::where('payment_status','Completed')->where('status','processing')->count() }}

Orders Processing!

View All
{{ \App\Order::where('payment_status','Completed')->where('status','completed')->count() }}

Orders Completed!

View All
{{ \App\Withdraw::where('status','pending')->count() }}

Pending Withdraws!

View All
{{ \App\UserProfile::count() }}

Total Customers!

View All
{{ \App\Vendors::where('status',0)->count() }}

Vendors Pending!

View All
{{ \App\Vendors::count() }}

Total Vendors!

View All
{{ \App\Subscribers::count() }}

Total Subscribers!

View All
@stop @section('footer') @stop