Skip to content

Commit

Permalink
Fix #56
Browse files Browse the repository at this point in the history
  • Loading branch information
kerwitz committed May 19, 2015
1 parent edaae62 commit 5006944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SearchableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function scopeSearch(Builder $q, $search, $threshold = null, $entireText
return $q;
}

$search = strtolower(trim($search));
$search = mb_strtolower(trim($search));
$words = explode(' ', $search);

$selects = [];
Expand Down

0 comments on commit 5006944

Please sign in to comment.