Returning a Redirect Response Using the Redirect Facade | Laravel 5: Redirecting Users to the Previous Page With back
The Redirect facade resolves to an instance of Illuminate\Routing\Redirector , which is where the back method is defined: 1 use Illuminate \ Support \ Facades \ Redirect ; 2 3 function postCreateSomeValue ( ) { 4 // ... code here ... 5 return...