Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View alecz2303's full-sized avatar

Alejandro Rueda alecz2303

View GitHub Profile
//SearchController.php
public function autocomplete(){
$term = Input::get('term');
$results = array();
$queries = DB::table('users')
->where('first_name', 'LIKE', '%'.$term.'%')
->orWhere('last_name', 'LIKE', '%'.$term.'%')
->take(5)->get();