Tobi Wan - Hi, I'm trying to access the authent...
# ❓questions
t
Hi, I'm trying to access the authenticated twill user in a controller in laravel.
auth()->user()
is giving me the authenticated user for my site (users table) but I'm trying to get the twill admin user (twill_users table). Any pointers how to do that?
i
Auth::guard('twill_users')
t
awesome, thanks.