Skip to content

Instantly share code, notes, and snippets.

View nulpatrol's full-sized avatar

Rostyslav Khaniukov nulpatrol

View GitHub Profile
@nulpatrol
nulpatrol / autocomplete.php
Created September 21, 2016 18:07 — forked from imranismail/autocomplete.php
Laravel And JqueryUI's Autocomplete Plugin
//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();