Download the PHP package mammothcoding/laravel-easy-filter without Composer

On this page you can find all versions of the php package mammothcoding/laravel-easy-filter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-easy-filter

laravel-easy-filter

Readme in other languages: RU

Latest Stable Version License GitHub stars Monthly Downloads Github downloads

Table of Content

:electric_plug: Requirements

:microphone: Introduction

Easy filter and sorter for indexlike requests and listings of models. It is possible to use several methods of filtering in a query and sorting the result.

:electric_plug: Installation

Run this Composer command to install the latest version

    $ composer require mammothcoding/laravel-easy-filter

Usage

For usage you need to form the correct request to the server and process it in our filtering service to get the result in a convenient form.

for filtering:

for sorting:

Simple Examples

Actions in code:

Actions in code:

Actions in code:

All filtering methods

Methods in the 2nd value in the array of filtering rule:

Example: filter=[["created_at","<","2023-01-01"]]

#

=, <>, >, >=, <, <=

Selection of the values present in the specified.

Example: filter=[["groups","in",["medics","programmers"]]]

Selecting values that are not present in the specified ones.

Example: filter=[["groups","notin",["medics","programmers"]]]

Selection values from the specified range.

Example: filter=[["created_at","between",["2023-07-14T18:27:59.000000Z","2023-07-19T18:29:58.000000Z"]]]

Selects values that are not within the specified range.

Example: filter=[["created_at","notbetween",["2023-07-14T18:27:59.000000Z","2023-07-19T18:29:58.000000Z"]]]

Selects values that start with the specified value.

Example: filter=[["created_at","startswith","2023-07-14"]]

Selects values that end with the specified value.

Example: filter=[["email","endswith",".com"]]

Selects values that contain the specified value.

Example: filter=[["name","contains","Dr."]]

Selects values that do not contain the specified value.

Example: filter=[["name","notcontains","Dr."]]

Methods

Methods of class EasyFilter:

Adds filtering conditions to the object's builder.

Adds sort conditions to the object's builder.

Get the resulting object's builder directly as an Eloquent Builder.

Get result from object as Collection.

Get the result from an object as array.

License

MIT


All versions of laravel-easy-filter with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
illuminate/support Version >=v6.0.0
illuminate/container Version >=v6.0.0
illuminate/database Version >=v6.0.0
illuminate/pagination Version >=v6.0.0
illuminate/http Version >=v6.0.0
ext-json Version >=v6.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mammothcoding/laravel-easy-filter contains the following files

Loading the files please wait ....