Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Latest commit

 

History

History
15 lines (8 loc) · 357 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 357 Bytes

Laravel cart

Installation

  1. Require this package in your composer.json and run composer update:

     "badou/lara-cart": "dev-development"
    
  2. After composer update, add service providers to the config/app.php

     'Badou\Cart\CartServiceProvider',
    
  3. Add this to the facades in config/app.php:

    'Cart' => Badou\Cart\Facades\Cart::class,