Support the ongoing development of Laravel.io →
posted 11 years ago
Requests

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!

Last updated 2 years ago.
0

This problem was never a problem, and is working. It was an error between which area I was using (local vs hosting).

Last updated 2 years ago.
0

Quick little tip, remove the '/' at the start of your route declaration. '/return' -> 'return'.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Craytor craytor Joined 20 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.