• {{ translate('Dashboard') }}
  • @php $this->seller_id = \App\Seller::where('user_id', Auth::user()->id)->first()->id; $orders_count = \App\Order::where('seller_viewed', 0) ->join('order_products', function ($join) { $join->on('orders.id', '=', 'order_products.order_id')->where('order_products.seller_id', $this->seller_id); }) ->count('orders.id'); @endphp {{ translate('Orders') }} {{ $orders_count }}
  • {{ translate('Import & Export') }}
  • @php $refunds_count = \App\RefundRequest::where('seller_seen', 0)->where('seller_id',$this->seller_id)->count(); @endphp {{ translate('Refunds') }} {{ $refunds_count }}
  • @php $withdrawRequest_count = \App\SellerWithdrawRequest::where('viewed', 0)->where('seller_id',$this->seller_id)->count(); @endphp {{ translate('Sellerm withdraw requests') }} {{ $withdrawRequest_count }}
  • {{ translate('Reports') }}
    • {{ translate('product stock report') }}
    • {{ translate('Commission history') }}
  • {{ translate('Product') }}
    • {{ translate('Products') }}
    • {{ translate('Add product') }}