staudenmeir/laravel-merged-relations
Composer 安装命令:
composer require staudenmeir/laravel-merged-relations
包简介
Merged Laravel Eloquent relationships
README 文档
README
This Laravel Eloquent extension allows merging multiple relationships using SQL views.
The relationships can target the same or different related models.
Supports Laravel 5.5+.
Installation
composer require staudenmeir/laravel-merged-relations:"^1.0"
Use this command if you are in PowerShell on Windows (e.g. in VS Code):
composer require staudenmeir/laravel-merged-relations:"^^^^1.0"
Versions
| Laravel | Package |
|---|---|
| 13.x | 1.11 |
| 12.x | 1.10 |
| 11.x | 1.9 |
| 10.x | 1.6 |
| 9.x | 1.5 |
| 8.x | 1.4 |
| 7.x | 1.3 |
| 6.x | 1.2 |
| 5.8 | 1.1 |
| 5.5–5.7 | 1.0 |
Usage
- Use Cases
- Step 1: Creating Views
- Step 2: Defining Relationships
- Pivot Table Data
- Limitations
- Testing
Use Cases
Use the package to merge multiple polymorphic relationships:
class Tag extends Model { public function allTaggables() { // TODO } public function posts() { return $this->morphedByMany(Post::class, 'taggable'); } public function videos() { return $this->morphedByMany(Video::class, 'taggable'); } }
Or use it to merge relationships with different depths:
class User extends Model { public function allComments() { // TODO } public function comments() { return $this->hasMany(Comment::class); } public function postComments() { return $this->hasManyThrough(Comment::class, Post::class); } }
Step 1: Creating Views
Before you can define the new relationship, you need to create the merge view in a migration:
use Staudenmeir\LaravelMergedRelations\Facades\Schema; Schema::createMergeView( 'all_taggables', [(new Tag)->posts(), (new Tag)->videos()] );
By default, the view doesn't remove duplicates. Use createMergeViewWithoutDuplicates() to get unique results:
use Staudenmeir\LaravelMergedRelations\Facades\Schema; Schema::createMergeViewWithoutDuplicates( 'all_comments', [(new User)->comments(), (new User)->postComments()] );
You can also replace an existing view:
use Staudenmeir\LaravelMergedRelations\Facades\Schema; Schema::createOrReplaceMergeView( 'all_comments', [(new User)->comments(), (new User)->postComments()] );
The package includes staudenmeir/laravel-migration-views. You can use its methods to rename and drop views:
use Staudenmeir\LaravelMergedRelations\Facades\Schema; Schema::renameView('all_comments', 'user_comments'); Schema::dropView('all_comments');
If you are using php artisan migrate:fresh, you can drop all views with --drop-views.
Step 2: Defining Relationships
With the view created, you can define the merged relationship.
Use the HasMergedRelationships trait in your model and provide the view name:
class Tag extends Model { use \Staudenmeir\LaravelMergedRelations\Eloquent\HasMergedRelationships; public function allTaggables(): \Staudenmeir\LaravelMergedRelations\Eloquent\Relations\MergedRelation { return $this->mergedRelation('all_taggables'); } }
If all original relationships target the same related model, you can use mergedRelationWithModel(). This allows you to
access local scopes and use methods like whereHas() or withCount():
class User extends Model { use \Staudenmeir\LaravelMergedRelations\Eloquent\HasMergedRelationships; public function allComments(): \Staudenmeir\LaravelMergedRelations\Eloquent\Relations\MergedRelation { return $this->mergedRelationWithModel(Comment::class, 'all_comments'); } }
You can use the merged relationship like any other relationship:
$taggables = Tag::find($id)->allTaggables()->latest()->paginate(); $users = User::with('allComments')->get();
Pivot Table Data
You can retrieve additional pivot columns if your merge view consists of many-to-many relationships.
Add the desired pivot columns to all relationships:
use Staudenmeir\LaravelMergedRelations\Facades\Schema; Schema::createMergeView( 'all_taggables', [ (new Tag)->posts()->withPivot('tagged_at'), (new Tag)->videos()->withPivot('tagged_at'), ] ); $taggables = Tag::find($id)->allTaggables; foreach ($taggables as $taggable) { dump($taggable->pivot->tagged_at); }
Limitations
In the original relationships, it's currently not possible to limit the selected columns or apply withCount().
In the merged relationships, it's not possible to remove global scopes like SoftDeletes. They can only be removed in
the original relationships.
Testing
If you use PHPUnit or a similar tool to run tests, add this property to your base test class to ensure that database views are dropped when the test database is cleaned up:
protected bool $dropViews = true;
Contributing
Please see CONTRIBUTING and CODE OF CONDUCT for details.
staudenmeir/laravel-merged-relations 适用场景与选型建议
staudenmeir/laravel-merged-relations 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 248.59k 次下载、GitHub Stars 达 185, 最近一次更新时间为 2019 年 06 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 staudenmeir/laravel-merged-relations 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 staudenmeir/laravel-merged-relations 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 248.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 185
- 点击次数: 38
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-06-23