我正在为我的用户构建推荐链接,我想通过facebook Auth链接传递变量,如下所示:
<a href="{{ route('facebook.auth', ['id' => $id,'code'=>$code]) }} ></a>
我试图建立像这样的链接跟踪器
public function trackLink($id=null,$code=null)
{
if (User::where('id',$id)->where('referral_code',$code)->first()) {
$points = Points::where('user_id',$id)->first();
$points->user_id = $id;
$points->points = Points::where('user_id',$id)->first()->points + 1000;
$points->save();
}
return redirect()->route('auth.facebook');
}
我将用户重定向到它,但是这会向用户重复每次登录尝试
如何使用auth链接发送这些变量。