Skip to content

Instantly share code, notes, and snippets.

@cmd0315
Created December 3, 2014 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmd0315/fe4b62ed984974432f7f to your computer and use it in GitHub Desktop.
Save cmd0315/fe4b62ed984974432f7f to your computer and use it in GitHub Desktop.
Route::filter('auth', function()
{
if (Auth::guest())
{
if (Request::ajax())
{
return Response::make('Unauthorized', 401);
}
else
{
return Redirect::guest(URL::route('home'));
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment