Skip to content
Advertisement

Laravel – Querybuilder with join and concat

Im trying to pull all users from the users table who match a certain group in the users_groups pivot table. Im using Sentry 2 from Cartalyst btw.

This works to get all users with first and last name concatenated.

JavaScript

when i try to change it to also filter users who do not belong to a certain group I get a syntax error.

JavaScript

Any nudge in the right direction would be greatly appreciated.

EDIT: syntax error

JavaScript

Advertisement

Answer

Logan’s answer got my started in the right direction. I also had to remove all of the ‘user.’ prefixes since it was calling the Users model already I suppose. This query worked:

JavaScript

Thanks everyone! Hopefully if someone else runs into this they will find guidance with this question.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement