Skip to content

Commit 6102bcc

Browse files
committed
Merge branch 'fix/searchables-join' of github.com:BinarCode/laravel-restify into fix/searchables-join
2 parents c0f7b3d + b7508e3 commit 6102bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Filters/SearchableFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function filter(RestifyRequest $request, $query, $value)
5454
// Check if the attribute is already qualified (contains a dot)
5555
$qualifiedColumn = str_contains($attribute, '.')
5656
? $attribute
57-
: $relatedTable . '.' . $attribute;
57+
: $relatedTable.'.'.$attribute;
5858

5959
if (! config('restify.search.case_sensitive')) {
6060
$upper = strtoupper($value);

0 commit comments

Comments
 (0)