
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
- Send post data from controller to view
- Datetime field in Laravel migration
- Call to a member function update() on null
- Laravel hasmany select not working
- Laravel change date format
- How to use more than one query scope in Laravel
- How to create new user without form submission in laravel
- Multiple Level eager loading in Laravel
- How to decrypt laravel password
- How to customize or Change validation error messages
- Convert input array to comma-separated string in laravel controller
- Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.0.0"
- Laravel migration add foreign key to existing table
- Array to string conversion laravel Controller
- Add [name] to fillable property to allow mass assignment on [App\Models\Project]
- How to send ID to another page in Laravel
- Ajax GET request in laravel
- Non-static method App\Http\Helper::myFunction() should not be called statically
- Wheredate in laravel not working
- SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel8.projects' doesn't exist
- Argument 1 passed to Symfony\Component\HttpFoundation\Response::setContent() must be of the type string or null, object given
- Get last year created records in Laravel
- Post model with title and body in laravel 8
- How to remove package from laravel
- Laravel create multiple records in Pivot table