Это видео недоступно.
Сожалеем об этом.

Laravel Shopping Cart Tutorial| Add to Cart| Laravel Tutorials

Поделиться
HTML-код
  • Опубликовано: 8 июн 2023
  • #laravel #shoppingcart #laravelshoppingcart #addtocart #tutorial #freecourse
    Add to Cart| Laravel Shopping Cart Tutorial-URDU/Hindi| Laravel Tutorials
    Topics covered:
    ✅ Learn How to read cart item products from a cart in Laravel 10
    ✅ Understanding of Shopping Cart
    ✅ Front-end design of shopping cart view blade.
    ✅ Step by step perform backend and migration with MYSQL
    ✅ step by step learning
    ✅ Easy method of programming
    ✅ Complete understanding of Laravel e-commerce website and shopping cart
    ✅E-commerce complete Website
    🔵PlaYlist🔵
    React Native Complete Course:
    • React Native Expo Comp...
    Laravel Web App Development Complete Course
    • Laravel Web App Develo...
    #LaravelShoppingCart
    #LaravelEcommerce
    #LaravelDevelopment
    #ShoppingCartTutorial
    #EcommerceDevelopment
    #WebDevelopment
    #LaravelFramework
    #ShoppingCartFunctionality
    #LaravelProjects
    #AddProductstoCart
    #LaravelTutorials
    #CartFunctionality
    #EcommerceWebsite
    #PHPDevelopment
    #LaravelProgramming
    #LaravelBeginner
    #LaravelTips
    #WebApplicationDevelopment
    #LaravelMVC
    #ShoppingCartImplementation
    #LaravelEcommerceSolution
    #EcommerceCart
    #LaravelWebDevelopment
    #ShoppingCartFeatures
    #LaravelShopping
    #LaravelDeveloper
    #EcommerceDevelopmentServices
    #ShoppingCartManagement
    #LaravelCode
    #LaravelTutorial
    #LaravelCartPackage
    #LaravelEcommerceWebsite
    #AddToCartFunctionality
    #LaravelDevelopmentCompany
    #EcommerceCartFunctionality
    #LaravelWebApp
    #LaravelProjectsIdeas
    #LaravelWebApplication
    #ShoppingCartIntegration
    #LaravelEcommerceDevelopment
    #LaravelEcommerceSolution
    #LaravelWebDeveloper
    #EcommerceCartSystem
    #LaravelCodeSnippet
    #LaravelShoppingExperience
    #LaravelEcommerceStore
    #LaravelShoppingApp
    #LaravelCartFunctionality
    #LaravelProgrammingTips
    #EcommerceDevelopmentAgency
    #LaravelEcommerceCart
    #LaravelShoppingWebsite
    #LaravelEcommercePlatform
    #LaravelShoppingCartTutorial
    #LaravelWebDevelopmentServices
    #EcommerceCartManagement
    #LaravelCodeExamples
    #LaravelShoppingCartImplementation
    #LaravelEcommerceSolutions
    #LaravelEcommerceDevelopmentCompany
    #LaravelCartPackageTutorial
    #LaravelEcommerceWebsiteDevelopment
    #LaravelWebAppDevelopment
    #EcommerceCartFunctionalityGuide
    #LaravelProjectsForBeginners
    #LaravelEcommerceWebApp
    #LaravelWebDevelopmentCompany
    #LaravelEcommerceCartFunctionality
    #LaravelShoppingCartIntegration
    #LaravelEcommerceDevelopmentServices
    #LaravelWebDevelopmentAgency
    #EcommerceCartSystemGuide
    #LaravelShoppingCartCode
    #LaravelEcommerceShoppingExperience
    #LaravelEcommerceStoreDevelopment
    #LaravelShoppingAppDevelopment
    #LaravelCartFunctionalityTutorial
    #LaravelProgrammingTricks
    #EcommerceDevelopmentAgencyServices
    #LaravelEcommerceCartSystem
    #LaravelShoppingWebsiteDevelopment
    #LaravelEcommercePlatformTutorial
    #LaravelShoppingCartTutorialForBeginners
    #LaravelWebDevelopmentServicesGuide
    #EcommerceCartManagementSolutions
    #LaravelCodeSnippetExamples
    #LaravelShoppingCartImplementationGuide
    #LaravelEcommerceSolutionsTutorial
    #LaravelEcommerceDevelopmentCompanyServices
    #LaravelCartPackageDevelopment
    #LaravelEcommerceWebsiteDevelopmentGuide
    #LaravelWebAppDevelopmentTutorial
    #EcommerceCartFunctionalityManagement
    #LaravelProjectsIdeasForBeginners
    #LaravelEcommerceWebAppDevelopment
    #LaravelWebDevelopmentCompanyServices
    #LaravelEcommerceCartFunctionalityGuide
    #LaravelShoppingCartIntegrationTutorial
    #LaravelEcommerceDevelopmentServicesGuide
    #LaravelWebDevelopmentAgencyServices

Комментарии • 15

  • @innocentreporter4931
    @innocentreporter4931 7 месяцев назад +4

    Mostly when you go to a shopping website then it will not ask you directly about the login/signup, but it will allow you to add the products in your cart. It will only ask you to login or signup when you go to checkout. Because at that point, the system must know the details of the user. Before this, the cart data is only stored in cookies or some temporary tables. I know that each developer have a different approach for development, but just defining here that there is some other way of doing the things also. But for this particular project, the approach you are following is completely fine.
    By the way, hats off to you brother for this wonderful series of tutorials.

  • @user-pg9ic2tv5j
    @user-pg9ic2tv5j Месяц назад

    Bhai ! Is there anyway to store items in cart before login and when the use want to checkout that time we should ask for login and after login all the previous products should be there in the cart? Agar aisa ho sakta hai to uspe bhi ek video bana do please.

  • @mohsinJourney
    @mohsinJourney Год назад +1

    Mashallah

  • @sharjeelhashmi8487
    @sharjeelhashmi8487 4 месяца назад

    Hello brother! mujhe add to cart krte howe issue a raha he [SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'quantity' cannot be null] ye error show ho raha jb add to cart wale button pe click krta hon, So please help me out this section

    • @sharjeelhashmi8487
      @sharjeelhashmi8487 4 месяца назад

      And baqi sb Ok he sb Sahi work kr raha he from start of your course but yaha ye issue a raha he So please help krein

    • @clumsycookie3659
      @clumsycookie3659 4 месяца назад

      Bro i had the same problem at first. I did fix it in SingleProduct.blade.php. The form section is wrong. Give it to chatgpt and fix it.

    • @RohitJaiswal-uu3qm
      @RohitJaiswal-uu3qm 3 месяца назад

      public function addToCart(Request $data)
      {
      if(session()->has('id'))
      {
      $item = new Cart();
      $item->quantity = $data->input('quantity');
      $item->productId = $data->input('id'); // Assign productId from the form data
      $item->customerId = session()->get('id');
      $item->save();
      return redirect()->back()->with('success', 'Congratulations! Item added into Cart.');
      }
      else {
      return redirect('login')->with('error','Please login to Cart.');
      }
      }

    • @technicalrider6196
      @technicalrider6196 2 месяца назад

      Bro can u share source code​@@RohitJaiswal-uu3qm

  • @moulisinha5887
    @moulisinha5887 Год назад +1

    Hi I have tried..but product is not added to cart table can you please help?

    • @itsgujrat
      @itsgujrat  11 месяцев назад

      Sure

    • @itsgujrat
      @itsgujrat  11 месяцев назад

      Plz run
      php artisan optimise

    • @moulisinha5887
      @moulisinha5887 11 месяцев назад

      Thanks but I tried that too.. didn't work

    • @RohitJaiswal-uu3qm
      @RohitJaiswal-uu3qm 3 месяца назад

      @@moulisinha5887 public function addToCart(Request $data)
      {
      if(session()->has('id'))
      {
      $item = new Cart();
      $item->quantity = $data->input('quantity');
      $item->productId = $data->input('id'); // Assign productId from the form data
      $item->customerId = session()->get('id');
      $item->save();
      return redirect()->back()->with('success', 'Congratulations! Item added into Cart.');
      }
      else {
      return redirect('login')->with('error','Please login to Cart.');
      }
      }

    • @RohitJaiswal-uu3qm
      @RohitJaiswal-uu3qm 3 месяца назад

      ye code karke dekho ho jayega