{{translate('Total published products')}}: {{ $productStats->published_products }}{{-- \App\Product::where('published', 1)->get()->count() --}}
@if (\App\BusinessSetting::where('type', 'vendor_system_activation')->first()->value == 1)
{{translate('Total sellers products')}}:
{{ $productStats->seller_products }}
{{-- \App\Product::where('published', 1)->where('added_by', 'seller')->get()->count() --}}
@endif
{{translate('Total admin products')}}: {{ $productStats->admin_products }} {{-- \App\Product::where('added_by', 'admin')->get()->count() --}}
@if(Auth::user()->user_type == 'admin')
{{ translate('Manage Products') }}
@endif