是一個多對多關聯。
// 三个表如下 users user_role roles
現在我想查詢出所有使用者所屬的roles的name欄位
roles
name
請問該怎麼用Eloquent ORM寫這個關聯查詢呢?
Eloquent ORM
已解決。 。
User::with('roles')->get();
看起來是要寫權限驗證 建議使用entrust這個套件 位址:https://github.com/Zizaco/ent...
看起來是要寫權限驗證 建議使用entrust這個套件 位址:https://github.com/Zizaco/ent...