How To Redirect To External Link With Laravel?

How-To-Redirect-To-External-Link-With-Laravel.jpg

Sometimes you may need to redirect on external URL from our laravel 8 application like if you use something like Amazon API, Paypal API etc. so, Laravel 8 provide away() for redirect other external link for return redirect like bellow example:

Example:
return redirect()->away('http://www.google.com');