I expanded Sentry users table with few columns, but in this case I need help for city_id column. I did it in Laravel migrations. Now I need to make relationship between Sentry users and cities table.
I try to expand Sentry user Model and add belongsTo, but I cannot use it from Sentry::findUserById() like Sentry::findUserById()->with('city')
How can I expand Sentry user model with relationship to another table/model?