We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f1ae0 commit e14a355Copy full SHA for e14a355
src/Filters/FiltersScope.php
@@ -14,7 +14,7 @@ class FiltersScope implements Filter
14
{
15
public function __invoke(Builder $query, $values, string $property): Builder
16
17
- $propertyParts = Str::of($property)->explode('.');
+ $propertyParts = collect(explode('.', $property));
18
19
$scope = Str::camel($propertyParts->pop());
20
0 commit comments