laravel sentry redirect::intended not working
I'm trying to get the sentry package set up in my app correctly. I can log a user in and out and protect routes but I can't seem to get the redirect::intended to work properly. My understanding is that a user will be taken back to the route they originally called before being directed to the login page. At the moment it simply keeps redirecting to the default page. In my routes.php I have the following group set up: Route::group(array('before' => 'sentryAuth'), function () {...} Within this group I've placed all the protected routes. In my filters.php I have the following filters: Route: