本文介绍了如何比较 2 个雄辩的集合并从另一个中删除其中的内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有所有门的集合,以及当前用户可以访问的门的集合.如何比较两者并从所有门集合中删除用户已经可以访问的门?
I have a collection of all doors, and a collection of doors that the current user has access to. How can I compare the two and remove from the all doors collection the doors the user already has access to?
$doors = Door::orderBy('name', 'asc')->get();
$users_doors = $user->doors;
这是两个集合.
推荐答案
$doorsWithAccess = $doors->diff($users_doors);
这篇关于如何比较 2 个雄辩的集合并从另一个中删除其中的内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!