Laravel: need a combined relationship for account admins and their sub-users
I have Users. Some users (admins) manage accounts, defined via a account_user pivot table (account_id | admin_id). Some of these admins manage other "sub-users", defined via a user_management pivot table (account_admin_id | end_user_id). #1) I need to create an Eloquent…