maize-tech/laravel-searchable
Composer 安装命令:
composer require maize-tech/laravel-searchable
包简介
Laravel Searchable
README 文档
README
Laravel Searchable 🔍
Easily add weighted searches through model attributes and relationships.
This package currently supports MySQL and PostgreSQL.
Installation
You can install the package via composer:
composer require maize-tech/laravel-searchable
You can publish the config file with:
php artisan vendor:publish --provider="Maize\Searchable\SearchableServiceProvider" --tag="searchable-config"
This is the content of the published config file:
return [ /* |-------------------------------------------------------------------------- | Default match weight |-------------------------------------------------------------------------- | | The weight of all searched words which match at least one of the | list of searchable attributes. | Defaults to 1. | */ 'default_match_weight' => 1, ];
Usage
To use the package, add the Maize\Searchable\HasSearch trait to each model you want to make searchable.
Once done, you can implement the getSearchableAttributes abstract method by returning the list of attributes (or relationships' attributes) you want to search for.
You can also define the weight of each searchable attribute. If no weight is specified then default_match_weight will be taken from config/searchable.php.
Here's an example model including the HasSearch trait:
<?php namespace App\Models; use Maize\Searchable\HasSearch; use Illuminate\Database\Eloquent\Relations\BelongsToMany; use Illuminate\Support\Facades\DB; class Article extends Model { use HasSearch; protected $fillable = [ 'id', 'title', 'body', 'creator_name', 'creator_surname', ]; protected $casts = [ 'body' => 'array', ]; /** * Get the model's searchable attributes. * * @return array */ public function getSearchableAttributes(): array { return [ 'title' => 5, // Model attribute 'body.en' => 2, // Single json key of a model attribute 'tags.name', // Relationship attribute 'tags.description.*', // All json keys of a relationship attribute DB::raw("CONCAT(creator_name, ' ', creator_surname)"), // Raw expressions are supported too ]; } /** * Allows fetching the tags bound to current article instance * * @return BelongsToMany */ public function tags(): BelongsToMany { return $this->belongsToMany(Tag::class)->withTimestamps(); } }
Now you can just search for a given term using the scopeSearch scope method:
use App\Models\Article; $searchTerm = 'the search string'; Article::query() ->search($searchTerm) ->where('column', '=', 'something') ->get();
That's all!
The package generates an SQL query with an 'or' condition for each search term and each searchable fields. The given query returns all models matching the search terms. Furthermore, search results are weighted, which means the query will be ordered by the most matching models.
If you don't want to order the search results by its match weight, you can set the orderByWeight flag to false:
use App\Models\Article; $searchTerm = 'the search string'; Article::query() ->search($searchTerm, false) ->where('column', '=', 'something') ->get();
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
maize-tech/laravel-searchable 适用场景与选型建议
maize-tech/laravel-searchable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 52.53k 次下载、GitHub Stars 达 113, 最近一次更新时间为 2021 年 10 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「searchable」 「maize-tech」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 maize-tech/laravel-searchable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 maize-tech/laravel-searchable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 maize-tech/laravel-searchable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Encryptable
Laravel Badges
Laravel nps
Eloquent model search trait.
Laravel Legal Consent
Laravel Prunable Fields
统计信息
- 总下载量: 52.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 113
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-12