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
redirect::intended
In your filters.php make sure to use:
return Redirect::guest('login');
instead of
return Redirect::route('login');
The guest function will set the correct session variables for intended() to work properly.