How to Merge Two Eloquent Collections?

后端 未结 6 812
梦如初夏
梦如初夏 2020-11-28 08:30

I have a questions table and a tags table. I want to fetch all questions from tags of a given question. So, for example, I may have the tags \"Travel,\" \"Trains\" and \"Cul

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-28 08:52

    $users = User::all();
    $associates = Associate::all();
    
    $userAndAssociate = $users->merge($associates);
    

提交回复
热议问题