I want to implement case insensitive search following is my code for search
/*get the title to search*/ $newsTitle=Input::get(\'srach_newsTitle\')?Input:
Use LOWER()
LOWER()
$query->whereRaw('LOWER(`newsTitle`) LIKE ? ',[trim(strtolower($newsTitle)).'%']);