$posts = Post::whereFullText('content', 'john doe')->get();
$posts = Post::whereFullText('content', 'john doe')->get();
$first = ModelName::where('<fieldName>','<searchText>')
->get();
$second = Album::where('<fieldName>','<searchText>')
->get();
$finalResult = $first->merge($second);
留言
發佈留言