Skip to content

Tag: php

Laravel table relationship to pivot table

I’m confused on how to get my model setup in laravel with a table that is connected to a pivot table. Here’s the problem Say I have Relationship between the tables are different areas type belongs to different locations. i.e: beach, 25m pools, kids pools, bbq, etc area_test is connected to the piv…

Roles and permissions in php

I am making a menu, but I want to limit it to only some users with a specific permission can see it. the query: SELECT idpermission,userid FROM user_permissions WHERE userid = “U001” Result: User …