Skip to content

Releases: osi-open-source/lumen-query-builder-filters

Remove filter in all cases from req

30 Jul 13:42
Compare
Choose a tag to compare
v1.2.0

remove filters in any case

Release 1.1.0

12 Feb 16:54
d9fcc14
Compare
Choose a tag to compare

Added

  • Scope Filter

Fixes

  • cleanup code

Description:

Scope filter can be used with custom search functionality with Models that have Scopes defined

You can pass a filter

[
    'popular' => [
        'pattern' => 'SCOPE'
    ]
]

if you have defined scope:

public function scopePopular($query)
{
    return $query->where('votes', '>', 100);
}

Release 1.0.0

14 Sep 13:24
Compare
Choose a tag to compare
v1.0.0

update readme