Skip to content

Instantly share code, notes, and snippets.

@fer-ri
Forked from clouddueling/fulltextsearch.php
Created April 4, 2013 01:43
Show Gist options
  • Save fer-ri/5307035 to your computer and use it in GitHub Desktop.
Save fer-ri/5307035 to your computer and use it in GitHub Desktop.
public static function read_search($terms, $limit = 20)
{
$contact_results = Contact::where_account_user_id(Auth::user()->account_user_id)
->where_deleted(0)
->where_marketing(0)
->where_mass_merge(0)
->raw_where("match (`first`, `last`) against (?)", array($terms))
->take($limit)
->get();
return $contact_results;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment