This documentation is for older version of laravel click here for latest laravel 5.4 documentation
If you are starting a new project, you can use our git repo to have everything pre-installed to save your time.
Please follow installation steps mentioned in "Laravel 5.1" but with following change in composer.
We Assume, your composer already includes "laravel/framework": "5.2.*",
Now, instead of "laravelcollective/html": "5.1.*",
Use "laravelcollective/html": "5.2.*",
Instead of "cviebrock/eloquent-taggable": "dev-master",
Use "cviebrock/eloquent-taggable": "dev-laravel-5-refactor",
Finally your composer.json, require
array should have these
"laravelcollective/html": "5.2.","cartalyst/sentinel": "2.0.","cviebrock/eloquent-sluggable": "dev-master","cviebrock/eloquent-taggable": "dev-laravel-5-refactor","yajra/laravel-datatables-oracle": "~5.0"
We need to wrap all routes in routes.php with web
middleware, like below
Route::group(['middleware' => 'web'], function () {/*|--------------------------------------------------------------------------| Application Routes|------------------------------------------------------------------...//all other routes...Route::get('{name?}', '[email protected]');# End of frontend views});