How to Display Total Price for a Cart in Laravel | Laravel E-Ccommerce Project Tutorial

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

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

  • @A--DuyAnh
    @A--DuyAnh หลายเดือนก่อน +4

    This is the code for homeController remove
    public function delete_cart($id)
    {
    $data = Cart::find($id);
    $data->delete();
    flash()->success('The product has been Deleted successfully');
    return redirect()->back();
    }

  • @gitpopipopipopopipo
    @gitpopipopipopopipo 6 หลายเดือนก่อน +1

    You forgot the 'remove button' tutorial in this vid. If you posted the tutorial in other video, please tell me which one or send the link. I really need it. Thank you so much.

  • @UniversalAccount-lk9ez
    @UniversalAccount-lk9ez 7 หลายเดือนก่อน +3

    how did you make the remove in cart

    • @nicowijaya2554
      @nicowijaya2554 3 หลายเดือนก่อน

      Controller :
      public function delete_cart($id){
      if(Auth::id()){
      $user= Auth::user();
      $userid = $user->id;
      $count = Cart ::where('user_id',$userid)->count();
      $cart =Cart ::where('user_id',$userid)->get();
      $productId = $id; // ID produk yang ingin dicari
      // Mencari produk dalam keranjang
      $cartItem = Cart::where('product_id', $productId)->first();

      $cartItem->delete();
      toastr()->timeOut(10000)->closeButton()->success('Product Deleted Successfully');

      }
      return redirect()->back();
      }

  • @cloverchips3350
    @cloverchips3350 3 หลายเดือนก่อน

    if you are encountering an error on getting the value paste this : $value += (int)$cart->product->price;

  • @RobertoJavierRamirezCarreno
    @RobertoJavierRamirezCarreno 4 หลายเดือนก่อน

    Undefined variable $value when you put the variable outside of the foreach.

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

    public function carts()
    {
    return $this->hasMany(Cart::class);
    } If u define relationship like this in User model you can do something like this
    $totalCarts = auth()?->user()?->carts()?->count();

  • @firmanyuswansyah9788
    @firmanyuswansyah9788 4 หลายเดือนก่อน

    How to remove in cart?

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

    How to stop adding the same products in to cart twice

  • @A--DuyAnh
    @A--DuyAnh หลายเดือนก่อน

    This is how you guy get the remove button


    Product Title
    Price
    Image
    Remove

    @foreach ($cart as $cart)


    {{$cart->product->title}}
    {{$cart->product->price}}




    Remove


    @endforeach

  • @muthurams4809
    @muthurams4809 8 หลายเดือนก่อน

    Give tha review and ratings for tha product

  • @albensajor2239
    @albensajor2239 7 หลายเดือนก่อน

    remove?

  • @beticohernandez9536
    @beticohernandez9536 8 หลายเดือนก่อน

    Why didn't you address the amount?

    • @WebTechKnowledge
      @WebTechKnowledge  8 หลายเดือนก่อน

      We can get prices using the product_id

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

      It would be good if the number of products to buy was added to the cart.

  • @LoveluHossain-hv4vj
    @LoveluHossain-hv4vj 8 หลายเดือนก่อน

    next video

  • @LoveluHossain-hv4vj
    @LoveluHossain-hv4vj 8 หลายเดือนก่อน

    A non-numeric value encountered

    • @sanjayviper3494
      @sanjayviper3494 7 หลายเดือนก่อน +2

      Problem is your price data
      In this case value like 2000
      But you guve 2,000 kama is the numarical value thats why is happened after changing the value you got the total amount