Stars: 224
Forks: 30
Pull Requests: 19
Issues: 21
Watchers: 11
Last Updated: 2023-02-28 03:41:09
Managing the cart in your Laravel/E-commerce application is a breeze
License: MIT License
Languages: PHP
Let's make the cart management with Laravel a breeze.
There are a few well maintained shopping cart packages available but I wanted to have a solution which feels like the Laravel way and is more coupled with the database and provides additional functionality like shipping charges, discount, tax, total, round off, guest carts, etc. out-of-box while staying a very easy to use package.
Let us decide when this package should be used:
PHP | Laravel | Package |
---|---|---|
8.0+ | 10.x | v1.6.0 |
8.0+ | 9.x | v1.5.0 |
7.3+ | 8.x | v1.4.0 |
<7.3 | 7.x | v1.3.0 |
<7.2.5 | 6.x | v1.2.0 |
composer require freshbitsweb/laravel-cart-manager
php artisan vendor:publish --tag=laravel-cart-manager-config
php artisan vendor:publish --tag=laravel-cart-manager-migrations
php artisan migrate
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Freshbitsweb\LaravelCartManager\Traits\Cartable;
class Product extends Model
{
use Cartable;
// ...
}
// Add to cart
$cart = Product::addToCart($productId);
// Remove from cart
$cart = cart()->removeAt($cartItemIndex);
// Apply discount
$cart = cart()->applyDiscount($percentage);
// Fetch cart
$cart = cart()->toArray();
The repository with the demo of using this package can be found at - https://github.com/freshbitsweb/laravel-cart-manager-demo
cart_manager.php
file contains the following config options for the package:
driver : (default: DatabaseDriver) The driver that should be used to store and retrieve cart details. You can use existing ones or create your own.
auth_guard : (default: web) The authentication guard that should be used to identify the logged in customer. This package can store carts for guest users as well as logged in users.
shipping_charges : (default: 10) The amount that should be applied as shipping of the order.
shipping_charges_threshold : (default: 100) The minimum order amount to avoid the shipping charges. Take a note that order amount is calculated as subtotal of the cart items - discount amount.
tax_percentage : (default: 6%) Tax is applied on subtotal of the cart items - discount amount + shipping charges and rounded to 2 decimals.
round_off_to : (default: 0.05) You may wish to round of the order amount to the nearest decimal point. Options are (0 or 0.05 or 0.1 or 0.5 or 1)
cookie_name : (default: cart_identifier) The name of the cookie that this package stores to identify the guests of the web app and store their cart data.
cookie_lifetime : (default: 1 week) Number of minutes for which the cart cookie should be valid in customer's browser.
LC_MONETARY : (default: en_US.UTF-8) This option is used to display the various totals of the cart with a currency symbol. We use php's native money_format() function to display currency with amount.
cart_data_validity : (default: 1 week) (Database driver only) You may wish to remove old/invalid cart data from the database. You can specify the validity period and run/schedule the ClearCartDataCommand for the same.
You can set the driver that should be used to store and retrieve cart details in the cart_manager.php
config file. You can use existing ones or create your own driver.
Database driver stores the cart data in 2 tables: carts
and cart_items
. You can also remove stale data by running ClearCartDataCommand
.
Using this driver allows you to store cart data on server and customer can be displayed the same cart across channels i.e. Mobile app, website, etc.
This driver stores the cart data in the session according to the session driver. This driver does not support cart management for guests via API as we cannot have a uniform way to track the user.
All of these operations return full cart data with items.
/**
* Add to cart
*
* @return json
*/
public function addToCart()
{
return Product::addToCart(request('productId'));
}
/**
* Remove from cart
*
* @return json
*/
public function removeFromCart()
{
return cart()->removeAt(request('cartItemIndex'));
}
/**
* Increment cart item quantity
*
* @return json
*/
public function incrementCartItem()
{
return cart()->incrementQuantityAt(request('cartItemIndex'));
}
/**
* Decrement cart item quantity
*
* @return json
*/
public function decrementCartItem()
{
return cart()->decrementQuantityAt(request('cartItemIndex'));
}
/**
* Update user input quantity.
*
* @return json
*/
public function cartItemQuantitySet()
{
return cart()->setQuantityAt(request('cartItemIndex'), request('cartQuantity'));
}
/**
* Clear Cart
*
* @return json
*/
public function clearCart()
{
return cart()->clear();
}
$cart = cart()->toArray();
$cartAttributes = cart()->data();
$cartTotals = cart()->totals();
Cart has following attributes: subtotal
, discount
, discountPercentage
, couponId
, shippingCharges
, netTotal
, tax
, total
, roundOff
, payable
.
You can access any of them using a getter method. For example,
$subtotal = cart()->getSubtotal();
$cartItems = cart()->items();
$cartItems = cart()->items($displayCurrency = true);
$cart = cart()->applyDiscount($percentage);
$cart = cart()->applyFlatDiscount($discountAmount);
As this package stores the details of the cart items in a separate table or session, the cart data will not be updated if you update, price, name or image of the cart items.
If you update any of the item details regularly, we suggest you to run the following code before the final checkout to make sure that order totals are up-to-date as per the latest prices.
cart()->refreshAllItemsData();
This code will go through each cart item and update to fresh details.
Note: This feature is for Database driver only.
This package uses the cookies and sessions to maintain cart data during page reloads. As the APIs are stateless, we cannot use them to do the same.
To solve the issue, you can manually set the authenticated user id to maintain the cart data.
cart()->setUser($userId);
Running this code will tell the package to assign the cart data to the specified user.
Note: Guests cannot manage their carts via API as we cannot have a uniform way to track the user.
Working with Laravel, how can we forget events?
This package fires various cart related events which you can listen to for any application updates.
CartCreated
-> Fired when cart is created for the session for the first time and contains the full cart data in the variable $cartData
.
CartItemAdded
-> Fired when an item is added to the cart and contains the new item Eloquent model object in the variable $entity
.
CartItemRemoved
-> Fired when an item is removed from the cart and contains the new item Eloquent model object in the variable $entity
.
DiscountApplied
-> Fired when discount if applied to the cart and contains the full cart data in the variable $cartData
.
CartCleared -> Fired when the cart is cleared.
Add the event and listener entry in the EventServiceProvider
class
protected $listen = [
'Freshbitsweb\LaravelCartManager\Events\CartCreated' => [
'App\Listeners\LogCartCreated',
],
];
Create respective listener:
<?php
namespace App\Listeners;
use Illuminate\Support\Facades\Log;
use Freshbitsweb\LaravelCartManager\Events\CartCreated;
class LogCartCreated
{
/**
* Handle the event.
*
* @param CartCreated $event
* @return void
*/
public function handle(CartCreated $event)
{
Log::info('cart', [$event->cartData]);
}
}
Note: This is required for Database driver only.
You may wish to remove old/invalid cart data from the database.
Schedule the ClearCartDataCommand for the same.
protected function schedule(Schedule $schedule)
{
$schedule->command('lcm_carts:clear_old')->daily();
}
This will delete the old/invalid data which is considered based on the cart_data_validity
config option.
Run this command to run the tests of the package:
composer test
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
You're free to use this package, but if it makes it to your production environment I would highly appreciate you buying the world a tree.
It’s now common knowledge that one of the best tools to tackle the climate crisis and keep our temperatures from rising above 1.5C is to plant trees. If you contribute to our forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees at for our forest here offset.earth/treeware
Read more about Treeware at treeware.earth