Retrieve Laravel Model results based on multiple ID's

让人想犯罪 __ 提交于 2019-12-02 14:47:26

That's simple. Use findMany:

$models = Model::findMany([1, 2, 3]);

By the way, you can also pass an array to find() and it will internally call findMany:

$models = Model::find([1, 2, 3]);

Under the hood it just does a whereIn so you could do that too:

$models = Model::whereIn('id', [1, 2, 3])->get();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!