Tag: laravel

Tech Laravel: Implementing a Shopping Cart for Your Website

Laravel: Implementing a Shopping Cart for Your Website

Introduction In this article we will show how to implement a simple Store page and a Shopping Cart page for your Laravel E-commerce website. The shopping cart will allow users to choose products to buy and make a payment via the PayPal payment gateway. PayPal is the world’s most popular system for processing payments on …

Read Article Read More

Tech Laravel: Database Management with Eloquent ORM

Laravel: Database Management with Eloquent ORM

Introduction In Laravel, we have several ways to work with a database. One of them is using raw SQL queries and commands via the query builder. The other way is using Eloquent ORM. Eloquent ORM is more common in everyday tasks since it simplifies our life and saves our time in the most basic things …

Read Article Read More