Download the PHP package moltin/laravel-cart without Composer

On this page you can find all versions of the php package moltin/laravel-cart. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-cart

THIS REPO IS BEING CONSIDERED FOR OWNERSHIP TRANSFER, PLEASE SEE HERE: https://github.com/moltin/laravel-cart/issues/62#issuecomment-328447136

Laravel Shopping Cart Package

Laravel Facade and Service Provider for Moltin\Cart

Installation

via Composer:

Add the following to your app/config/app.php to the service providers array:

Then add to the aliases array the following:

You should then be good to go and be able to access the cart using the following static interface:

Config settings (Optional)

Publish the config file with php artisan vendor:publish

Setting the tax rate for an item

Another key you can pass to your insert method is 'tax'. This is a percentage which you would like to be added onto the price of the item.

In the below example we will use 20% for the tax rate.

Updating items in the cart

You can update items in your cart by updating any property on a cart item. For example, if you were within a cart loop then you can update a specific item using the below example.

Removing cart items

You can remove any items in your cart by using the method on any cart item.

Destroying/emptying the cart

You can completely empty/destroy the cart by using the method.

Retrieve the cart contents

You can loop the cart contents by using the following method

You can also return the cart items as an array by passing true as the first argument

Retrieving the total items in the cart

By default this method will return all items in the cart as well as their quantities. You can pass as the first argument to get all unique items.

Retrieving the cart total

By default the method will return the total value of the cart as a , this will include any item taxes. If you want to retrieve the cart total without tax then you can do so by passing false to the method

Check if the cart has an item

Retreive an item object by identifier

Cart items

There are several features of the cart items that may also help when integrating your cart.

Retrieving the total value of an item

You can retrieve the total value of a specific cart item (including quantities) using the following method.

By default, this method will return the total value of the item plus tax. So if you had a product which costs 100, with a quantity of 2 and a tax rate of 20% then the total returned by this method would be 240.

You can also get the total minus tax by passing false to the method.

This would return 200.

Check if an item has options

You can check if a cart item has options by using the method.

Remove an item from the cart

Output the item data as an array


All versions of laravel-cart with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
laravel/framework Version ~5.0
moltin/cart Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package moltin/laravel-cart contains the following files

Loading the files please wait ....