@extends('backend.layouts.app') @section('content') @if(env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
{{translate('Please Configure SMTP Setting to work all email sending functionality')}}, {{ translate('Configure Now') }}
@endif
{{ translate('Total') }} {{ translate('Customer') }}
{{ \App\Customer::all()->count() }}
{{ translate('Total') }} {{ translate('Order') }}
{{ \App\Order::all()->count() }}
{{ translate('Total') }} {{ translate('Product category') }}
{{ \App\Category::all()->count() }}
{{ translate('Total') }} {{ translate('Product brand') }}
{{ \App\Brand::all()->count() }}
{{ translate('Products') }}
{{ translate('Sellers') }}
{{ translate('Category wise product sale') }}
{{ translate('Category wise product stock') }}
@endsection @section('script') @endsection