PHP code example of ankurk91 / laravel-shopping-cart

1. Go to this page and download the library: Download ankurk91/laravel-shopping-cart 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/ */

    

ankurk91 / laravel-shopping-cart example snippets



use Ankurk91\LaravelShoppingCart\Facades\ShoppingCart;
use App\Models\Product;

$product = Product::find(1);
$quantity = request('quantity');
$attributes = [
    'image_url' => asset('image.webp'),
];
$item = ShoppingCart::add(
    $product, 
    $product->name,
    $product->unit_price,
    $quantity, 
    $attributes,
);

ShoppingCart::find(1);
ShoppingCart::update($product->id, 3);
ShoppingCart::all();
ShoppingCart::count();
ShoppingCart::has($product);
ShoppingCart::isEmpty();
ShoppingCart::subtotal();
ShoppingCart::remove($product->getKey());
ShoppingCart::clear();


use Ankurk91\LaravelShoppingCart;

$shoppingCart = app(ShoppingCartManager::class);
$shoppingCart->all();