djekl
2/1/2015 - 7:54 PM

flash example - https://github.com/laracasts/flash

/**
 * Destroy the user's session (logout).
 *
 * @return Response
 */
public function destroy()
{
    Auth::logout();

    flash()->info('You are now logged out.');

    return home();
}