fix for postgres
This commit is contained in:
parent
9b56b357d9
commit
a591848ba9
@ -17,7 +17,8 @@ class ProductsRepository implements ProductsRepositoryInterface
|
|||||||
{
|
{
|
||||||
$query = Product::query();
|
$query = Product::query();
|
||||||
if(isset($filters['search'])){
|
if(isset($filters['search'])){
|
||||||
$query->where('name', 'like', "${filters['search']}%");
|
$search = ucfirst($filters['search']);
|
||||||
|
$query->where('name', 'like', "${search}%");
|
||||||
}
|
}
|
||||||
|
|
||||||
return $query->paginate($filters['limit']);
|
return $query->paginate($filters['limit']);
|
||||||
|
Loading…
Reference in New Issue
Block a user