Support the ongoing development of Laravel.io →
posted 10 years ago
Eloquent
Last updated 3 years ago.
0

Not sure I get what you're asking but a few tips:

$articles= Article::where('id', $articleIDs)->get(); //error here

//change to: 
$articles= Article::whereIn('id', $articleIDs)->get();

... and if you only want id and slug:

$articles= Article::select('id', 'slug')->whereIn('id', $articleIDs)->get();
Last updated 10 years ago.
0

Sign in to participate in this thread!

PHPverse

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.