DEV Community

Discussion on: Post an Elegant Code Snippet You Love.

Collapse
 
benborla29 profile image
Ben Borla

In Laravel I learned something by accident. I was trying to retrieve the roles of the user using this Query Builder.

User::find(1)->rolesPivot()->get()->pluck(‘roles’)->implode(‘, ’);

This outputs (example value only)
Admin, Reporter, Staff