Mysql – Displaying latest news for each in Laravel
I want to display only 3 news in each category to display the last 3 news that were added. Class category: class category extends Model { use HasFactory; public function articles(){ return $this->hasMany(Article::class)->limit(3)->orderBy('created_at', 'desc'); } } Class Article: class Article…