定制 codewiser/belongs-to-many 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

codewiser/belongs-to-many

Composer 安装命令:

composer require codewiser/belongs-to-many

包简介

Extended BelongsToMany for Laravel

README 文档

README

As we know, BelongsToMany relation connects two models with a pivot table between. In simple cases, the pivot table has just two columns — foreign keys. In more complex cases, the pivot table has additional columns, and we want to constrain relation with pivot values.

The problem is, when we use whereHas method on BelongsToMany relation, the callback receives Builder instance, not Relation instance. So we can't use wherePivot* methods...

Take a look on examples.

Here we deal with a Relation instance:

$user->organizations()->wherePivot('role', 'accountant');

But here we deal with a Builder instance:

User::query()
    ->where('users.role', 'superuser')
    ->whereHas('organizations', fn(Builder $builder) => $builder
        ->where('organization_user.role', 'accountant')
    );

Here we enforced to use qualified column names to escape ambiguity.

The solution is to receive Relation instance into callback.

We introduce a HasPivot trait to use it with custom builders.

With that trait, all *has builder's methods, such as whereHas, whereDoesntHave, etc., will send to a callback not a Builder instance, but BelongsToMany object, so you allowed to use any wherePivot* methods to constrain an intermediate query.

You may apply the trait to a custom builder:

use Codewiser\Database\Eloquent\Traits\HasPivot;
use Illuminate\Database\Eloquent\Builder;

/**
 * @extends Builder<User>
 */
class UserBuilder extends Builder
{
    use HasPivot;
}

If you don't plan to use custom builder, anyway you should apply extended builder to a model. This extended builder already carries the trait.

use Codewiser\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Attributes\UseEloquentBuilder;
use Illuminate\Database\Eloquent\Model;

#[UseEloquentBuilder(Builder::class)]
class User extends Model
{
    //
}

Trait fires only on BelongsToMany relations. All other relation types, such as BelongsTo, HasMany, etc., keeps their original behaviour.

Also, this package provides a new method for BelongsToMany class (extended with a macro). The pivot method provides access to a pivot builder for you to build intermediate query.

Take a look on examples after applying HasPivot trait.

Here we deal with a Relation instance:

$user->organizations()->wherePivot('role', 'accountant');

$user->organizations()->pivot(
    fn(Builder $pivotBuilder) => $pivotBuilder->where(
        $pivotBuilder->qualifyColumn('role'), 
        'accountant'
    )
);

And here we deal with a Relation instance too:

Organization::query()->whereHas('users',
    fn(BelongsToMany $builder) => $builder->wherePivot('role', 'accountant')
);

// If you use pivot model with a custom builder:
Organization::query()->whereHas('users',
    fn(BelongsToMany $builder) => $builder->pivot(
        fn(MyPivotBuilder $pivotBuilder) => $pivotBuilder->where(
            $pivotBuilder->qualifyColumn('role'), 
            'accountant'
        )
    )
);

Implementation

You either MUST use Codewiser\Database\Eloquent\Builder builder for both models that consists in BelongsToMany relation.

Or you MUST use custom builders with \Codewiser\Database\Eloquent\Traits\HasPivot trait applied.

This is applicable to MorphToMany relations too.

codewiser/belongs-to-many 适用场景与选型建议

codewiser/belongs-to-many 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 09 月 12 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 codewiser/belongs-to-many 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 codewiser/belongs-to-many 我们能提供哪些服务?
定制开发 / 二次开发

基于 codewiser/belongs-to-many 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 30
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 17
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-09-12