laravel-support maintained by vi-kon
Description
Support package for Laravel 5.1
Author
Last update
2016/06/11 22:29
(dev-develop)
Downloads
306
Installation
Composer
There are multiple way to install package via composer
-
To your
composer.jsonfile add following lines:// to your "require" object "vi-kon/laravel-support": "^1.0" -
Or run following command in project root:
composer require vi-kon/laravel-authThis command will add above line in your composer.json file and download required package files.
Setup
In your Laravel project add following lines to config/app.php:
// to providers array
\ViKon\Support\SupportServiceProvider::class,
In app\Http\Kernel.php file add following lines to $middleware array:
// to $middleware array
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
// Add after \Illuminate\View\Middleware\ShareErrorsFromSession::class,
\ViKon\Support\Middleware\View\ShareSuccessesFromSession::class,
Note: In Laravel 5.2 add these lines instead of $middleware array
to array marked with web key inside $middlewareGroups array.
[Back to top][top]