
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
- Touch parent updated_at in Laravel
- Call to a member function getRelationExistenceQuery() on array in Laravel
- SQLSTATE[42S21]: Column already exists: 1060 Duplicate column name 'user_id'
- On delete set foreign id column value null using migration in laravel 8
- How to update record after save method in Laravel
- Submit form without CSRF token in Laravel
- Get posts belongs to a specific user in Laravel
- How to delete record in Laravel with ajax
- Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails
- How to show data by ID in laravel?
- First and last item of the array using foreach iteration in laravel blade
- How to get last month records in Laravel
- Get previous date data in laravel
- Eager loading dynamically in laravel
- Cannot end a section without first starting one
- Get ids in array from users table
- SQLSTATE[42000]: Syntax error or access violation: 1055
- Display first n record from collection in laravel view
- Insert values in pivot table dynamically in laravel
- Attempt to read property "avatar" on null in Laravel
- RuntimeException You must enable the openssl extension in your php.ini to load information from https://repo.packagist.org
- Update record after find method in lavavel
- How to insert multiple rows in mysql using loop in laravel?
- Conditional where clause in Laravel
- Laravel recursive function in controller