Viktor
Viktor

Reputation: 237

Redirecting user to previous page

What is the best way to redirect the user to the previous page when a POST-request has been processed in laravel? That is, to the page where the POST-form that the user used to send the POST request?

I could of course add a hidden field with the URL to that page, but there has to be a more convenient way?

Upvotes: 0

Views: 170

Answers (1)

Antonio Carlos Ribeiro
Antonio Carlos Ribeiro

Reputation: 87719

You have plenty of methods in Laravel to do that:

return Redirect::back();

Is one you can use to send the user back to a post form he/she right posted to.

Upvotes: 2

Related Questions