I use the following article to create user roles in Laravel.
My problem is, how to get all user roles after authorization?
I tried to get roles like this:
Auth::user()->roles()
Because User model has method roles()
.
But it does not work.
I suppose I need to get auth user id, then to get user model:
$user = User::where('id', Auth::user()->id)->get();
And then possible I can get access to roles:
$user->roles();
from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2UlVAYw
via IFTTT
Aucun commentaire:
Enregistrer un commentaire