PHP Classes
elePHPant
Icontem

PHP Eloquent Find Filter: Compose filters to find object matching conditions

Recommend this page to a friend!

  Author Author  
Name: Nahidul Hasan <contact>
Classes: 3 packages by
Country: Bangladesh Bangladesh
Innovation award
Innovation award
Nominee: 1x


  Detailed description   Download Download .zip .tar.gz  
This package can compose filters to find object matching conditions.

It provides base classes and a trait that can be used to define filter classes that can be used to define conditions to retrieve data objects using the Eloquent package.

Applications can create query filter classes based on this package base class and trait to define the parameters of the queries that will apply to the filters.

Details

Laravel Eloquent Filter

Latest Stable Version Total Downloads Latest Unstable Version License

This simple package helps you filter Eloquent data using query filters.

Installation

Run the following command:

composer require nahidulhasan/eloquent-filter  

Getting started

Use the trait NahidulHasan\EloquentFilter\Filterable in your eloquent model.

Create a new class by extending the class NahidulHasan\EloquentFilter\QueryFilters and define your custom filters as methods with one argument. Where function names are the filter argument name and the arguments are the value.

Let's assume you want to allow to filter articles data. Please see the following code.

<?php  
namespace App\Models;  

use Illuminate\Database\Eloquent\Model;  
use NahidulHasan\EloquentFilter\Filterable;  
  
class Article extends Model  
{  
	use Filterable; 
	 
 /
  * The attributes that are mass assignable. 
  *  @var array 
  */ 
  protected $fillable = [ 'title', 'body' ];
}  
  

Create ArticleFilter class extending QueryFilters.

<?php  
namespace App\Filters;  
  
use Illuminate\Database\Eloquent\Builder;  
use NahidulHasan\EloquentFilter\QueryFilters;  
  
class ArticleFilters extends QueryFilters  
{  
  
 /  
  * Filter by Title. 
  * @param $title 
  * @return Builder 
  * @internal param $name 
  * @internal param string $level 
  */ 
 public function title($title) { 
 return $this->builder->where('title', 'like', '%' .$title.'%'); 
 }  
}  

With this class we can use the http query string : title=article_name or any combination of these filters. It is up to you to define if you will use AND wheres or OR.

Now in the controller you can apply these filters like as described in below :

<?php  
namespace App\Http\Controllers;  
  
use App\Filters\ArticleFilters;  
use App\Models\Article;  
use Illuminate\Http\Request;  
  
/  
 * Class ArticleController 
 * @package App\Http\Controllers 
 */
 class ArticleController extends Controller  
{  
 / 
  * Display a listing of the resource. 
  *  @param ArticleFilters $filters 
  *  @return \Illuminate\Http\Response 
  *  @internal param Request $request 
  */ 
  public function index(ArticleFilters $filters) 
  {  
     $articles = Article::filter($filters)->paginate(5);  
     return view('articles.index',compact('articles')) ->with('i', (request()->input('page', 1) - 1) * 5); 
   }
 }  
  

If you go to this link you will get all code: https://github.com/nahidulhasan/laravel-eloquent-query-filtering

Thanks to :

https://github.com/laracasts/Dedicated-Query-String-Filtering

License

Eloquent-Filter for Laravel is open-sourced software licensed under the MIT license


  Classes of Nahidul Hasan  >  PHP Eloquent Find Filter  >  Download Download .zip .tar.gz  >  Support forum Support forum  >  Blog Blog  >  RSS 1.0 feed RSS 2.0 feed Latest changes  

 

Name: PHP Eloquent Find Filter
Base name: eloquent-filter
Description: Compose filters to find object matching conditions
Version: -
PHP version: 5
License: The PHP License
 
  Groups   Applications   Files Files  

  Groups  
Group folder image PHP 5 Classes using PHP 5 specific features View top rated classes
Group folder image Databases Database management, accessing and searching View top rated classes
Group folder image Design Patterns Implementations of well known design patterns View top rated classes


  Applications that use this package  
No pages of applications that use this class were specified.

Add link image If you know an application of this package, send a message to the author to add a link here.

  Files folder image Files  
File Role Description
Files folder imagesrc (3 files)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file README.md Doc. Read me

  Files folder image Files  /  src  
File Role Description
  Plain text file EloquentFilterServiceProvider.php Class Class source
  Plain text file Filterable.php Class Class source
  Plain text file QueryFilters.php Class Class source

Download Download all files: eloquent-filter.tar.gz eloquent-filter.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.