I'm kind of new to Laravel, when I try to redirect to an external URL I get a blank page. I running the Laravel on my local machine.
This is my web.php
Route::get('/pay', function () {
return view('pay');
});
This is a code that I try to run inside pay.blade.php
return redirect()->away('https://www.google.com');
CodePudding user response:
Try this
redirect()->to('https://www.google.com')->send();