I want to join multiple tables with default 'users' table in Sentry. I'm using Laravel framework. I tried to change default Sentry model in config file, but when I put "App\Models\User" insted of "Cartalyst\Sentry\Users\Eloquent\User", I'm getting error "Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_ERROR) Class '\App\Model\User' not found"
How can I join multiple tables with default sentry 'users' table by user id?
Cheers
Just set User
instead of App\Models\User
Now I'm getting this error:
"Call to undefined method Illuminate\Database\Query\Builder::checkPersistCode()"
You're probably not extending the Sentry User model on your User model, that's required.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community