Please i have this and am able to search by fistname only i want to search by lastname and nickname which are also found in my database, how do i do that?
$member = Request::get('keyword');
DB::select("SELECT * FROM members WHERE firstname LIKE '%".$member."%' ");