Issue
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');
Solution
Try this
redirect()->to('https://www.google.com')->send();
Answered By - Filip Krzyżanowski
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.