Skip to content

Instantly share code, notes, and snippets.

@vluzrmos
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vluzrmos/ec4fbd7d690c5437d6b8 to your computer and use it in GitHub Desktop.
Save vluzrmos/ec4fbd7d690c5437d6b8 to your computer and use it in GitHub Desktop.
Laravel Helper para redirecionar o usuário devolta para a última página ou para um lugar default.
<?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