You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
Laravel 5.2 Has a different config/auth file for the model you just need to change
public function users()
{
return $this->belongsToMany(config('auth.model'))->withTimestamps();
}
to
public function users()
{
return $this->belongsToMany(config('auth.providers.users.model'))->withTimestamps();
}
or just add another configuration variable in your config file and use that
The text was updated successfully, but these errors were encountered: