$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 );