简单的购物车

2.1.0 2020-11-29 14:54 UTC

This package is auto-updated.

Last update: 2024-09-29 05:49:43 UTC


README

安装

composer require simple-cart/cart

示例

$cart = new SimpleCart\Cart([
    new Acme\Product()
]);

//total number of items in the cart
$cart->count(); //or count($cart)