├── LICENSE.md ├── README.md ├── composer.json └── src ├── Console ├── Commands │ └── MakeFilterCommand.php └── stubs │ └── filter.stub ├── Filter.php ├── FilterBuilder.php ├── Filterable.php └── ServiceProvider.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/composer.json -------------------------------------------------------------------------------- /src/Console/Commands/MakeFilterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/Console/Commands/MakeFilterCommand.php -------------------------------------------------------------------------------- /src/Console/stubs/filter.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/Console/stubs/filter.stub -------------------------------------------------------------------------------- /src/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/Filter.php -------------------------------------------------------------------------------- /src/FilterBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/FilterBuilder.php -------------------------------------------------------------------------------- /src/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/Filterable.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurgentil/eloquent-filters/HEAD/src/ServiceProvider.php --------------------------------------------------------------------------------