x-laravel/commentable 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

x-laravel/commentable

Composer 安装命令:

composer require x-laravel/commentable

包简介

Polymorphic comment system for Laravel Eloquent models with nested comment support.

README 文档

README

Tests PHP Laravel License

A Laravel package that adds a polymorphic, infinitely nested comment system to any Eloquent model.

How It Works

  • Any model can receive comments via the Commentable trait
  • Any model can post comments via the Commenter trait
  • Replies can be nested to any depth
  • Replies are lazy-loaded — fetch only what you need, when you need it
  • Commenters are optional — anonymous comments are supported

Requirements

  • PHP ^8.2
  • Laravel ^12.0 | ^13.0

Installation

composer require x-laravel/commentable

Run the migration:

php artisan migrate

Setup

Receiving comments

Add Commentable to any model that should receive comments:

use Illuminate\Database\Eloquent\Model;
use XLaravel\Commentable\Commentable;

class Post extends Model
{
    use Commentable;
}

Posting comments

Add Commenter to any model that should be able to post comments:

use Illuminate\Database\Eloquent\Model;
use XLaravel\Commentable\Commenter;

class User extends Model
{
    use Commenter;
}

Usage

Adding a comment

// Anonymous
$post->addComment('Great post!');

// With a commenter
$post->addComment('Great post!', $user);

// Via Commenter
$user->comment($post, 'Great post!');

Adding a reply

// Via Commentable
$post->addReply($comment, 'I agree!', $user);

// Via Commenter
$user->reply($post, $comment, 'I agree!');

Replies can be added to any comment or reply. There is no depth limit.

Listing root comments

$post->rootComments()->paginate(20);

Chain relations as needed:

$post->rootComments()->withCount('replies')->with('commenter')->paginate(20);

Listing replies (lazy-load)

$comment->replies()->paginate(10);
$comment->replies()->withCount('replies')->with('commenter')->paginate(10);

Other relations

// All comments on a model (root + replies)
$post->comments()->get();

// All comments posted by a user
$user->comments()->get();

// The parent of a reply
$comment->parent;

// The model a comment belongs to
$comment->commentable;

// Check if a comment is a reply
$comment->isReply(); // true / false

Soft deleting

$comment->delete();       // soft delete
$comment->restore();      // restore
$comment->forceDelete();  // permanent delete (cascades to replies via FK)

Soft-deleting a parent comment does not cascade to its replies. If you want cascade-on-soft-delete behaviour, add a deleting event listener to your application.

Suggested API Design

GET    /posts/{post}/comments           → List root comments (paginated)
POST   /posts/{post}/comments           → Add a comment

GET    /comments/{comment}/replies      → List replies (paginated)
POST   /comments/{comment}/replies      → Add a reply

DELETE /comments/{comment}              → Soft delete a comment

Database

comments
├── id
├── commentable_type   (polymorphic — Post, Event, etc.)
├── commentable_id
├── commenter_type     (nullable polymorphic — User, Admin, etc.)
├── commenter_id
├── parent_id          (nullable FK → comments.id, cascadeOnDelete)
├── body
├── created_at
├── updated_at
└── deleted_at         (soft delete)

Testing

# Build first (once per PHP version)
DOCKER_BUILDKIT=0 docker compose --profile php82 build

# Run tests
docker compose --profile php82 up
docker compose --profile php83 up
docker compose --profile php84 up
docker compose --profile php85 up

License

This package is open-sourced software licensed under the MIT license.

x-laravel/commentable 适用场景与选型建议

x-laravel/commentable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 04 月 11 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「comments」 「laravel」 「eloquent」 「commentable」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

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

围绕 x-laravel/commentable 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-11