简体   繁体   中英

How to retrieve http get parameters in link in Laravel?

I am redirecting users from one laravel website to another for single authentication.

This is the redirect code in the website 1

return Redirect::to('http://example.com/login?param1=paramValue');

In website 2 , I'm trying to get value of param1

$param1 = Input::get('param1');

but get() function is not returning the value.

IF I try Input::has('param1') , it returns false .

Can someone please guide me on what's going wrong with my code?

The code is working fine for me,

 $param1 = Input::get('param1');
 return $param1;

Just try to update your framework using composer update

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM