Case insensitive search with Eloquent | Laravel.io

PHOTO EMBED

Mon Aug 21 2023 17:38:43 GMT+0000 (Coordinated Universal Time)

Saved by @mvieira

$q->where( function ( $q2 ) use ( $stext ) {
	$q2->where( 'title', 'ilike', "%$stext%" ) );
	$q2->orWhere('desc', 'ilike', "%$stext%" ) );
});
content_copyCOPY

https://laravel.io/forum/08-19-2014-case-insensitive-search-with-eloquent