This simple package helps you filter Eloquent data using query filters.
Run the following command:
composer require nahidulhasan/eloquent-filter
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
https://github.com/laracasts/Dedicated-Query-String-Filtering
Eloquent-Filter for Laravel is open-sourced software licensed under the MIT license
Classes of Nahidul Hasan | > | PHP Eloquent Find Filter | > | Download .zip .tar.gz | > | Support forum | > | Blog | > | Latest changes |
|
|
Groups | Applications | Files |
Groups |
PHP 5 | Classes using PHP 5 specific features | View top rated classes |
Databases | Database management, accessing and searching | View top rated classes |
Design Patterns | Implementations of well known design patterns | View top rated classes |
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Files | / | src |
File | Role | Description |
---|---|---|
EloquentFilterServiceProvider.php | Class | Class source |
Filterable.php | Class | Class source |
QueryFilters.php | Class | Class source |
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.
|