How to Show Total Number of Product Added to the Cart for a User in Laravel

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

ความคิดเห็น •

  • @tanzimibthesam5861
    @tanzimibthesam5861 8 หลายเดือนก่อน +1

    To solve the attempt property on null you can use the nullsafe operator like $user_id = auth()?->user()?->id;

  • @jerinezavlogs
    @jerinezavlogs 8 หลายเดือนก่อน +2

    if we are already logged in as admin and again perform artisan serve ....then after login as admin it is taking us to the url /dashboard.....every time i need to customize the url like admin/dashboard...please fix the issue☺

  • @toddmcmannus4031
    @toddmcmannus4031 5 หลายเดือนก่อน

    I am liking this tutorial so far. 2 things that are missing is updating the qty when added to cart and removing items from the cart. Will you add these?

  • @bernardchisumo4054
    @bernardchisumo4054 6 หลายเดือนก่อน

    $products = Product::all();
    $count = 0;
    if (Auth::check()) {
    $userId = Auth::user()->id;
    $count = Cart::where('user_id', $userId)->count();
    }
    return view('front-end.index',compact('products', 'count'));