glebstar/laravel5-products

Products manager for Laravel 5

1.0.1 2016-08-24 10:46 UTC

This package is not auto-updated.

Last update: 2024-04-25 00:17:27 UTC


README

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