Different Ways to Redirect User

sanz

Sanz

Posted on July 28, 2020

Different Ways to Redirect User

redirect() is one of the most used and popular helper function. This function redirects users to different URLs of the website. By using this method, we can redirect the user to pages with or without data.
Redirect to different URL

This is the most and simplest form in which the redirect method is used. We can redirect a user to the homepage by simply using the method below:

return redirect('/');
Enter fullscreen mode Exit fullscreen mode

Users can also pass parameters inside the redirect method. The parameters given in the method will be added to the URL of the base application.

return redirect('contact');
Enter fullscreen mode Exit fullscreen mode

Likewise, users can also pass more parameters:

return redirect('user/profile');
Enter fullscreen mode Exit fullscreen mode

back() in Laravel

If the user wants to perform some sort of tasks and redirect back to the same page then the user can use back(). This method is also really helpful.

return redirect()->back();
Enter fullscreen mode Exit fullscreen mode

Redirect to Route

Users can also name the routes in the application for consistency. Some users call named routes instead of using URLs. Let’s see an example to make this concept clear.

return redirect()->route('profile.index');
Enter fullscreen mode Exit fullscreen mode

We can also pass the second parameter in route() in the form of an array. Let's see an example of a parameterized route.

Route::get('post/{id}', 'PostController@edit')-name('post.edit');
Enter fullscreen mode Exit fullscreen mode

We can write the above above in simpler form which is here below:

return redirect()->route('post.edit', ['id' => $post->id]);
Enter fullscreen mode Exit fullscreen mode

Read the details of the post in https://laravelproject.com/different-ways-to-redirect-user/.

💖 💪 🙅 🚩
sanz
Sanz

Posted on July 28, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Enums e lang no Laravel
webdev Enums e lang no Laravel

September 17, 2024

Laravel Auth Routes Tutorial
laravel Laravel Auth Routes Tutorial

September 14, 2024

Baby Steps Learning Laravel
webdev Baby Steps Learning Laravel

August 30, 2024