PHP code example of anam / lara-phpcart

1. Go to this page and download the library: Download anam/lara-phpcart library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

anam / lara-phpcart example snippets


'Anam\Phpcart\CartServiceProvider'

'Cart' => 'Anam\Phpcart\Facades\Cart'

use Anam\Phpcart\Cart;

$cart = new Cart();

$cart->add([
    'id'       => 1001,
    'name'     => 'Skinny Jeans',
    'quantity' => 1,
    'price'    => 90
]);

$cart->update([
    'id'       => 1001,
    'name'     => 'Hoodie'
]);

$cart->updateQty(1001, 3);

$cart->updatePrice(1001, 30);

$cart->remove(1001);

$cart->getItems();
// or
$cart->items();

$cart->get(1001);

$cart->has(1001);

$cart->count();

$cart->totalQuantity();

$cart->getTotal();

$cart->clear();

$cart = new Cart('cart1');
// or
$cart->setCart('cart2');
$cart->add([
    'id'       => 1001,
    'name'     => 'Skinny Jeans',
    'quantity' => 1,
    'price'    => 90
]);

//or
$cart->named('cart3')->add([
    'id'       => 1001,
    'name'     => 'Jeans',
    'quantity' => 2,
    'price'    => 100
]);