Skip to content

Instantly share code, notes, and snippets.

@angelmartz
Forked from clouddueling/fulltext_laravel.php
Created May 27, 2013 01:53
Show Gist options
  • Save angelmartz/5654804 to your computer and use it in GitHub Desktop.
Save angelmartz/5654804 to your computer and use it in GitHub Desktop.
public static function search_contacts($terms)
{
$terms = mysql_real_escape_string($terms);
$contact_results = Contact::where_account_user_id(Auth::user()->account_user_id)
->raw_where("match (`first`, `last`) against ('{$terms}*' IN BOOLEAN MODE)")
->where_deleted(0)
->paginate(20);
phpconsole($contact_results->results);
return $contact_results;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment