定制 mpyw/compoships-eager-limit 二次开发

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

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

mpyw/compoships-eager-limit

Composer 安装命令:

composer require mpyw/compoships-eager-limit

包简介

topclaudy/compoships + staudenmeir/eloquent-eager-limit

README 文档

README

topclaudy/compoships + staudenmeir/eloquent-eager-limit

Warning

This package is abandoned and no longer maintained.

staudenmeir/eloquent-eager-limit has been merged into the core since Laravel 11, and PR topclaudy/compoships#180 — which adds native limit()/offset() support to composite-key eager loads — was merged on 2025-10-03 and shipped in topclaudy/compoships ^3.0. Both pieces this wrapper used to glue together are now available upstream, so the package is no longer needed.

Migration: depend on topclaudy/compoships ^3.0 directly and call limit() inside your eager-load closures. On Laravel 11+ no extra trait is required.

$posts = Post::with(['authorComments' => fn ($query) => $query->limit(3)->offset(1)])->get();

Requirements

Installing

composer require mpyw/compoships-eager-limit

Usage

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Mpyw\ComposhipsEagerLimit\ComposhipsEagerLimit;

class Post extends Model
{
    use ComposhipsEagerLimit;

    public function comments()
    {
        return $this->hasMany(Comment::class);
    }

    public function authorComments()
    {
        return $this->hasMany(Comment::class, ['post_id', 'user_id'], ['id', 'user_id']);
    }
}
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use Mpyw\ComposhipsEagerLimit\ComposhipsEagerLimit;

class Comment extends Model
{
    use ComposhipsEagerLimit;
}
$posts = Post::with(['authorComments' => function ($query) {
    $query->limit(3)->offset(1);
}])->get();

For more details, visit each base package repository.

Special Thanks

统计信息

  • 总下载量: 124.66k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 13
  • 点击次数: 14
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 13
  • Watchers: 1
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-11-12

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固