I have this error when a user tries to login in using their Facebook account:
(1/1) FatalErrorException Class 'Illuminate\Foundation\Auth\Fbuser' not found
Here is my code:
namespace App;
use App\Fbuser;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Auth\Fbuser as Authenticatable;
class Fbuser extends Authenticatable
{
protected $fillable = [
'first_name','last_name', 'email', 'work',
];
protected $hidden = [
'remember_token',
];
}