Skip to content

Instantly share code, notes, and snippets.

@WISHPRO
Forked from vluzrmos/laravel_redirect_back.php
Last active August 29, 2015 14:16
Show Gist options
  • Save WISHPRO/1b55805613bd4511b048 to your computer and use it in GitHub Desktop.
Save WISHPRO/1b55805613bd4511b048 to your computer and use it in GitHub Desktop.
<?php
function redirect_back_or_default($url = null){
try{
return Redirect::back();
}catch(Exception $e){
return Redirect::to($url);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment