定制 nirajan/comment 二次开发

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

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

nirajan/comment

Composer 安装命令:

composer require nirajan/comment

包简介

A Laravel package for handling comments

README 文档

README

License: MIT Laravel Version

A lightweight Laravel package for adding comments to any Eloquent model using polymorphic relationships.

Features

  • Polymorphic comment support for any Eloquent model
  • Blade components for comment forms and comment lists
  • Admin dashboard for moderation, approval, and deletion
  • Optional ReCAPTCHA validation support
  • Configurable middleware, URL prefix, layout, and approval workflow
  • Easy installation and package reuse

Requirements

  • PHP 8.1+
  • Laravel 10.x, 11.x, or 12.x

Installation

  1. Install the package via Composer:
composer require nirajan/comment
  1. Publish package resources:
php artisan vendor:publish --provider="Nirajan\Comment\CommentServiceProvider"
  1. Run the migrations:
php artisan migrate

Configuration

The package publishes a configuration file at config/comment.php.

Example configuration:

return [
    'admin_middleware'    => ['web', 'admin'],
    'recaptcha_site_key'  => env('RECAPTCHA_SITE_KEY'),
    'recaptcha_secret_key'=> env('RECAPTCHA_SECRET_KEY'),
    'admin_url_prefix'    => 'AdminActivity',
    'admin_layout'        => 'backend.layouts.master',
    'need_approval'       => false,
    'post_route' => [
        'name'     => 'posts.detail',
        'param'    => 'id',
        'callback' => null,
    ],
    'theme' => [
        'icon_button_color' => '#fd0000',
        'icon_button_color_secondary' => '#fd0000',
    ],
];

Important configuration options

  • admin_middleware - Middleware applied to the admin comment routes
  • admin_url_prefix - URL prefix used for the dashboard route
  • admin_layout - Blade layout used by admin views
  • need_approval - Set to true to require manual approval before comments are public
  • post_route - Redirect options for a comment reply route or detail route

Usage

Enable comments on a model

Add the HasComments trait to any model:

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Nirajan\Comment\Traits\HasComments;

class Post extends Model
{
    use HasComments;
}

Display the comment form and list

Use the provided Blade components in your view:

<x-comment::comment-form :model="$post" />
<x-comment::comment-list :model="$post" />

Component props

  • comment-form expects a model instance that uses HasComments
  • comment-list expects a model instance and displays related comments

Admin Dashboard

Visit the admin dashboard at:

/ AdminActivity/comments

The dashboard supports:

  • viewing all comments
  • approving or rejecting comments
  • deleting comments
  • filtering by approval status

Update admin_url_prefix and admin_layout in config/comment.php to match your application.

ReCAPTCHA Support

If you want to enable ReCAPTCHA validation, add your keys to .env:

RECAPTCHA_SITE_KEY=your-site-key
RECAPTCHA_SECRET_KEY=your-secret-key

Then update config/comment.php accordingly.

Customization

You can customize package behavior through config/comment.php and by overriding published views in your application if needed.

License

This package is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions, issues, and pull requests are welcome. Please open an issue first if you want to propose a larger change.

nirajan/comment 适用场景与选型建议

nirajan/comment 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 18 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 nirajan/comment 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: Blade

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-03-18