glebstar/laravel5-products

Products manager for Laravel 5

Downloads

20

Stars

0

Version

1.0.1

Products Manager package for Laravel 5.2

This is a Laravel 5 package - https://github.com/glebstar/laravel5-products

GitHub Author

Installation

{
    "require": {
        "glebstar/laravel5-products": "1.0.*"
    }
}

or run composer require glebstar/laravel5-products

Then run composer update in your terminal to pull it in.

You will need to add the service provider to the providers array in your app.php config as follows:

GlebStarProducts\ServiceProvider::class,

Add an alias for ProductMiddleware in app/Http/Kernel.php into $routeMiddleware array:

'product' => \GlebStarProducts\Middleware\ProductMiddleware::class,

To publish a the package files, run:

php artisan vendor:publish --provider="GlebStarProducts\ServiceProvider"

Apply migration

php artisan migrate
glebstar

Author

glebstar