I have two query to database:
$words = Word::where('word','LIKE',"%{$search}%")
->limit(10)
->get();
$words_default = DefaultWord::where('word','LIKE',"%{$search}%")
->limit(10)
->get();
How I can combine results to one var?