1

我正在为我的用户建立一个推荐链接,我想通过 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');
}

我将用户重定向到它,但是每次登录尝试都会重复指向用户的点

我如何使用身份验证链接发送这些变量。

4

0 回答 0