Redirect to previous page or url in laravel
Redirect to previous page or url in laravel
In this article, we will see how to solve "Redirect to previous page or url in laravel".
-
Redirect to previous page or url using web.php
--PATH routes\web.phpuse Illuminate\Support\Facades\Redirect; Route::get('/redirect-to-previous-url', function(){ return Redirect::to(url()->previous()); });
This code snippet helps you to redirect to the previous page or url in laravel. You have to use Redirect Fasade, use Illuminate\Support\Facades\Redirect; in your web.php file before Route definition. It will redirect you to the last visited url or page.
-
Redirect to previous page or url using controller’s method
--PATH app\Http\Controllers\<YourController>.php//Add before class defination use Illuminate\Support\Facades\Redirect; //Controller's method public function backToPreviousURL(){ return Redirect::to(url()->previous()); }
Redirecting users to the previous page or url in laravel is very easy. You have to use url()->previous() method on Redirect Fasade. url()->previous() method gives you the last visited page url and Redirect Fasade return you to that page. Add this code
use Illuminate\Support\Facades\Redirect;
before the class definition in your controller file. -
Redirect to previous url from view file in laravel
--PATH resources\views\<yourfile>.blade.php<a class="btn btn-info" href="{{ URL::previous() }}"> Back </a>
This code snippet will redirect you from current page to last visited page in laravel. On click anchor tag you will be redirected to previous page or url.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- How to use more than one query scope in Laravel
- Delete records with relationship in laravel
- Setup laravel project with docker
- Laravel append URI in route
- Validation for multiple forms on same page in laravel
- SQLSTATE[42S22]: Column not found: 1054 Unknown column 'users.post_id' in 'where clause
- Class 'App\Http\Controllers\User' not found
- Delete all related comments on deleting a post in Laravel
- How to return error message from controller to view in laravel
- Laravel get all records with pagination
- Delete file from amazon s3 bucket using Laravel
- Ajax POST request in laravel
- How to get date from created_at field in laravel
- How to get id of next record in laravel
- How to get the random value form a specific column in laravel ?
- Pass variable from blade to controller Laravel
- JQuery each loop on json response after ajax in laravel
- How to display a specific word from a string in laravel
- How to validate website url in laravel using validaiton
- Property [user] does not exist on this collection instance
- How to add a key value pair to existing array in laravel
- How to change default timestamp fields name in Laravel
- Call to undefined method App\Models\User::follow()
- Laravel hasmany select not working
- Best code example for create order in Laravel for ecommerce