I am working on a PayPal system, and part of the PayPal process is returning back to the main site. So when the user returns to my site the following is in the address bar:
http://mysite.com/return?token=EC-7N760036FH961181F
With this, the user is then presented with a route not found. The following is my route:
Route::get('/return', 'PanelController@getReturn');
Then my PanelController is this:
public function getReturn() {
return View::make('panel.return');
}
I'm thinking the ?token=EC-7N760036FH961181F is throwing off the site, but I have to have this for my site. Does anyone know of a workaround? Thanks for any help!
This problem was never a problem, and is working. It was an error between which area I was using (local vs hosting).
Quick little tip, remove the '/' at the start of your route declaration. '/return' -> 'return'.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community