How to Go Back to the Previous URL in Laravel Blade
In this lesson, we will see how to go back to the previous URL in Laravel Blade, sometimes we need to send a user to the previous URL in our Blade template so how do we do that?
Go back to the previous URL in Laravel Blade
So to do that check the code below:
<a href="{{url()->previous()}}">
Go back to the previous page
</a>