2017 © Pedro PelĂĄez
 

library laravel-cart

Highly flexible cart for Laravel

image

witify/laravel-cart

Highly flexible cart for Laravel

  • Tuesday, June 19, 2018
  • by francoislevesque
  • Repository
  • 2 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

Lightweight and highly flexible cart in Laravel

Latest Version on Packagist Build Status Maintainability Test Coverage Total Downloads, (*1)

Installation

You can install the package via composer:, (*2)

composer require witify/laravel-cart

Usage

For Laravel 5.1 to 5.4, add the service provider: ``` php, (*3)

LaravelCartServiceProvider::class, (*4)


### Configuration To save cart into the database so you can retrieve it later, the package needs to know which database connection to use and what the name of the table is. By default the package will use the default database connection and use a table named `carts`. If you want to change these options, you'll have to publish the `config` file. php artisan vendor:publish --provider="Witify\LaravelCart\LaravelCartServiceProvider" --tag="config" This will give you a `cart.php` config file in which you can make the changes. To make your life easy, the package also includes a ready to use `migration` which you can publish by running: php artisan vendor:publish --provider="Witify\LaravelCart\LaravelCartServiceProvider" --tag="migrations" This will place a `carts` table's migration file into `database/migrations` directory. Now all you have to do is run `php artisan migrate` to migrate your database ### Testing ``` bash composer test

Changelog

Please see CHANGELOG for more information what has changed recently., (*5)

Contributing

Please see CONTRIBUTING for details., (*6)

Security

If you discover any security related issues, please email info@witify.io instead of using the issue tracker., (*7)

Credits

License

The MIT License (MIT). Please see License File for more information., (*8)

The Versions

19/06 2018
14/05 2018

1.0.0

1.0.0.0 https://github.com/Witify/laravel-seo-attributes

Quickly make add SEO attribute to your views in Laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel seo