Skip to content

Instantly share code, notes, and snippets.

@febridev
Created November 3, 2016 04:16
Show Gist options
  • Save febridev/59e71068154da5f3bfa7102c18c8286e to your computer and use it in GitHub Desktop.
Save febridev/59e71068154da5f3bfa7102c18c8286e to your computer and use it in GitHub Desktop.
Flash Message Can't Show Because Middleware Group's
//fixed by replace
Route::group(['middleware' => ['web']], function () {
...
});
//with
Route::group(['middlewareGroups' => ['web']], function () {
...
});
//source
http://stackoverflow.com/questions/36279871/laravel-5-2-session-flash-not-working-even-with-web-middleware
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment