PHPackages                             a4anthony/cartavel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. a4anthony/cartavel

ActiveLibrary

a4anthony/cartavel
==================

E-commerce cart system

v1.1.1(5y ago)112MITPHP

Since Jan 16Pushed 5y ago1 watchersCompare

[ Source](https://github.com/a4anthony/cartavel)[ Packagist](https://packagist.org/packages/a4anthony/cartavel)[ RSS](/packages/a4anthony-cartavel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (2)Versions (6)Used By (0)

Cartavel - E-commerce cart management system
============================================

[](#cartavel---e-commerce-cart-management-system)

[![Total Downloads](https://camo.githubusercontent.com/b991a5b4ff0c5e15a2e54a83d1b402f3aed3e1ea1b845d6158007c3eeaf39411/68747470733a2f2f706f7365722e707567782e6f72672f6134616e74686f6e792f636172746176656c2f646f776e6c6f6164732e7376673f666f726d61743d666c6174)](https://packagist.org/packages/a4anthony/cartavel)[![Latest Stable Version](https://camo.githubusercontent.com/63ef4a2592a02d3e267724d69e0ea1c9e9b822ee6e7ccbd5ca6c4a30f54da811/68747470733a2f2f706f7365722e707567782e6f72672f6134616e74686f6e792f636172746176656c2f762f737461626c652e7376673f666f726d61743d666c6174)](https://packagist.org/packages/a4anthony/cartavel)[![License](https://camo.githubusercontent.com/c0e0eb85e5707cfec6cc0c7cdbf5a1d3a6aadcb2d687cae7a8d43bcc4e20bd65/68747470733a2f2f706f7365722e707567782e6f72672f6134616e74686f6e792f636172746176656c2f6c6963656e73652e7376673f666f726d61743d666c6174)](https://packagist.org/packages/a4anthony/cartavel)

Prerequisite
------------

[](#prerequisite)

To use this package, migration files for users and items/inventory/products table must have been set up.

Installation Steps
------------------

[](#installation-steps)

After creating your new Laravel application you can include the cartavel package with the following command:

```
composer require a4anthony/cartavel
```

**Laravel ^5.5** uses Package Auto-Discovery, so it doesn't require you to manually add the ServiceProvider/Facade.

After updating composer, add the ServiceProvider to the providers array in config &gt; app.php

```
A4anthony\Cartavel\CartavelServiceProvider::class
```

Optionally you can use the Facade for shorter code. Add this to your facades in the aliases array in config &gt; app.php:

```
"Cartavel" => \A4anthony\Cartavel\Facades\Cartavel::class
```

To configure this package to suit your project, publish the cartavel config file

```
 php artisan vendor:publish --tag=config
```

Go to config &gt; cartavel.php and adjust the settings to suit your project

```
