devhereco/simple-eloquent-search
最新稳定版本:2.0
Composer 安装命令:
composer require devhereco/simple-eloquent-search
包简介
A Laravel package for adding search functionality to models.
README 文档
README
A laravel package to search via your models .
installation :
composer require devhereco/simple-eloquent-search
Usage :
- use
Searchabletrait in your model - Define
$searchableproperty in your model to select which columns to search in
Example :
use devhereco\SimpleEloquentSearch\Searchable; class User extends Model { use Searchable ; protected $searchable = ['name', 'posts.title']; public function posts(){ return $this->hasMany(Post::class); } } // Calling search method Model::search('ABC')->get();
统计信息
- 总下载量: 43
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-23