Support the ongoing development of Laravel.io →
Eloquent
Last updated 1 year 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 8 years ago.
0

Sign in to participate in this thread!

Eventy

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.

© 2024 Laravel.io - All rights reserved.