@php $activeTab = collect(request()->segments())->last(); @endphp @extends('layouts.adminlayout') @section('content')
Dashboard
Users
  • Total
    {{ isset($totalUsers) && $totalUsers ? $totalUsers : 0 ;}}
  • Active
    {{ isset($activeUsers) && $activeUsers ? $activeUsers : 0 ;}}
  • Inactive
    {{ isset($inactiveUsers) && $inactiveUsers ? $inactiveUsers : 0 ;}}
Products
  • Total
    {{ isset($products) && $products ? $products : 0 ;}}
  • Active
    {{ isset($productsActive) && $productsActive ? $productsActive : 0 ;}}
  • Inactive
    {{ isset($productsInactive) && $productsInactive ? $productsInactive : 0 ;}}
Blogs
  • Total
    {{ isset($totalBlog) && $totalBlog ? $totalBlog : 0 ;}}
  • Active
    {{ isset($activeBlog) && $activeBlog ? $activeBlog : 0 ;}}
  • Inactive
    {{ isset($inactiveBlog) && $inactiveBlog ? $inactiveBlog : 0 ;}}
Coupon
  • Total
    {{ isset($totalCoupon) && $totalCoupon ? $totalCoupon : 0 ;}}
  • Active
    {{ isset($activeCoupon) && $activeCoupon ? $activeCoupon : 0 ;}}
  • Inactive
    {{ isset($inactiveCoupon) && $inactiveCoupon ? $inactiveCoupon : 0 ;}}
Testimonials
  • Total
    {{ isset($totalTestimonial) && $totalTestimonial ? $totalTestimonial : 0 ;}}
  • Active
    {{ isset($activeTestimonial) && $activeTestimonial ? $activeTestimonial : 0 ;}}
  • Inactive
    {{ isset($inactiveTestimonial) && $inactiveTestimonial ? $inactiveTestimonial : 0 ;}}
Faq's
  • Total
    {{ isset($totalFaq) && $totalFaq ? $totalFaq : 0 ;}}
  • Active
    {{ isset($activeFaq) && $activeFaq ? $activeFaq : 0 ;}}
  • Inactive
    {{ isset($inactiveFaq) && $inactiveFaq ? $inactiveFaq : 0 ;}}
Orders
  • Total
    {{ isset($orders) && $orders ? $orders : 0 ;}}
  • Pending
    {{ isset($orderPending) && $orderPending ? $orderPending : 0 ;}}
  • Delivered
    {{ isset($orderDelivered) && $orderDelivered ? $orderDelivered : 0 ;}}
  • Declined
    {{ isset($orderDecline) && $orderDecline ? $orderDecline : 0 ;}}
Transaction
  • Total
    {{ isset($totalTransactionRequest) && $totalTransactionRequest ? $totalTransactionRequest : 0 ;}}
  • Pending
    {{ isset($totalTransactionPendingRequest) && $totalTransactionPendingRequest ? $totalTransactionPendingRequest : 0 ;}}
  • Delivered
    {{ isset($totalTransactionPaidRequest) && $totalTransactionPaidRequest ? $totalTransactionPaidRequest : 0 ;}}
  • Declined
    {{ isset($totalTransactionFailRequest) && $totalTransactionFailRequest ? $totalTransactionFailRequest : 0 ;}}
Notify /Rate & Review /Contact Request /Newsletter
  • Notify Product
    {{ isset($totalNotifyProdRequest) && $totalNotifyProdRequest ? $totalNotifyProdRequest : 0 ;}}
  • Product Rate & Review
    {{ isset($userReview) && $userReview ? $userReview : 0 ;}}
  • Contact Request
    {{ isset($totalContactRequest) && $totalContactRequest ? $totalContactRequest : 0 ;}}
  • Newsletter
    {{ isset($userNewsletter) && $userNewsletter ? $userNewsletter : 0 ;}}
@endsection