1. Go to this page and download the library: Download studiow/laravel-filtering library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
studiow / laravel-filtering example snippets
//From a collection
\Studiow\Laravel\Filtering\Filter::make(collect([]));
//From an array (or any datastructure supported by Illuminate\Support\Collection)
\Studiow\Laravel\Filtering\Filter::make([]));
//From an eloquent model query
\Studiow\Laravel\Filtering\Filter::make(ModelName::query());
//From an eloquent model instance
\Studiow\Laravel\Filtering\Filter::make($myModelInstance));
//From a Query Builder
\Studiow\Laravel\Filtering\Filter::make(\DB::table('the_table_name'));