嗨我使用Cartalyst / Sentinel进行登录系统一切正常,但是这个Reminder :: exists($ user)函数给出了这个错误Argument 1 passed to Cartalyst\Sentinel\Reminders\IlluminateReminderRepository::exists() must implement interface cartalyst\Sentinel\Users\UserInterface
代码与其示例页面上给出的代码相同。 https://cartalyst.com/manual/sentinel/2.0#reminder-exists-user
$user = Sentinel::findById($credentials);
//dd($user); // this dump user return collection object of user
$reminder = Reminder::exists( $user );
答案 0 :(得分:0)
错误是Sentinel::findById($id)
期望id不在这里$ credentials是数组。
现在$reminder = Reminder::exists( $user );
正在运作。