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
$users = User::all(); $associates = Associate::all(); $userAndAssociate = $users->merge($associates);