For users, one for roles and permissions set on Larval package Cartalyst\Sentinel.
Before that, I used the standard User model for users for which I have already done several relations of the form:
public function garageBuy()
{
return $this->hasMany('App\Models\Offers\GarageBuy')->orderBy('id', 'desc');
}
After you set up the User model to work with Sentinel, inherited the model from EloquentUser I have lost access to their relations. I now there is only one relationship - roles.
Can you tell me how to do that would have my User model was and my, custom relationships, and relationships from Sentinel?