serhiikorniienko/laravel-kuchi 问题修复 & 功能扩展

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

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

serhiikorniienko/laravel-kuchi

Composer 安装命令:

composer require serhiikorniienko/laravel-kuchi

包简介

A plug-and-play Laravel package for collecting user feedback and bug reports

README 文档

README

Laravel Kuchi

GitHub Workflow Status Latest Version on Packagist Total Downloads GitHub License

In Japanese, "kuchi" (口), pronounced "koo-chee" directly translates to "mouth".

A comprehensive Laravel package for collecting user feedback and bug reports with a beautiful, interactive UI built with Livewire.

Features

  • 📝 Feedback Collection - Allow users to submit feature requests, improvements, and general feedback
  • 🐛 Bug Reporting - Comprehensive bug reporting with steps to reproduce, browser info, and priority levels
  • 👍 Voting System - Users can upvote/downvote feedback to prioritize features
  • 🎛️ Admin Dashboard - Manage all feedback and bug reports with status updates
  • 🎨 Beautiful UI - Modern, responsive interface built with Tailwind CSS and Livewire
  • 🔐 Authentication - Only authenticated users can submit feedback (configurable)
  • 📊 Analytics - Track feedback trends and bug report statistics
  • ⚙️ Configurable - Extensive configuration options for customization

Installation

Install the package via Composer:

composer require serhiikorniienko/laravel-kuchi

Run the migrations or publish (optional) them to your application:

php artisan migrate

php artisan vendor:publish --tag="kuchi-migrations"

Publish the configuration file (optional):

php artisan vendor:publish --tag="kuchi-config"

Publish the views for customization (optional):

php artisan vendor:publish --tag="kuchi-views"

Configuration

The configuration file config/kuchi.php allows you to customize:

  • Middleware for routes
  • Admin users who can access the dashboard
  • Categories for feedback
  • Bug report priorities
  • Status options
  • Pagination settings

Usage

Basic Usage

To use the feedback and bug report forms, just provide the link for your users to access the feedback page. Add a button or any interactive element of your choice.

By default, the feedback page is available at /feedback (configurable via route prefix).

If you are using Livewire you can add the feedback components to any Blade template:

<!-- Feedback and Bug Report Forms -->
<livewire:feedback-form />
<livewire:bug-report-form />

<!-- Display Feedback List -->
<livewire:feedback-list />

Admin Dashboard

Access the admin dashboard at /feedback/admin (configurable via route prefix).

Admin users are defined in the configuration file:

'admin_users' => [
    'admin@example.com',
    1, // user ID
],

Routes

The package registers the following routes:

  • GET /feedback - Main feedback page
  • GET /feedback/admin - Admin dashboard

Models

The package provides three main models:

  • SerhiiKorniienko\LaravelKuchi\Models\Feedback - User feedback
  • SerhiiKorniienko\LaravelKuchi\Models\BugReport - Bug reports
  • SerhiiKorniienko\LaravelKuchi\Models\FeedbackVote - Voting system

Customization

Views

Publish the views to customize the UI:

php artisan vendor:publish --tag="kuchi-views"

Views will be published to resources/views/vendor/feedback/.

Configuration

Key configuration options:

return [
    'middleware' => ['web', 'auth'],
    'route_prefix' => 'feedback',
    'admin_users' => [
        // Add admin emails or user IDs
    ],
    'categories' => [
        'feature_request' => 'Feature Request',
        'improvement' => 'Improvement',
        'question' => 'Question',
        'other' => 'Other',
    ],
    'bug_priorities' => [
        'low' => 'Low',
        'medium' => 'Medium',
        'high' => 'High',
        'critical' => 'Critical',
    ],
];

Requirements

  • PHP 8.2+
  • Laravel 11.0+
  • Livewire 3.0+

Screenshots

Feedback List

Interactive list with voting, filtering, and search functionality. feedback-list.png

Feedback and Bug-report Forms

Nice modal forms for submitting feedback and bug reports. feedback-form.png bug-report-form.png

Admin Dashboard

Comprehensive dashboard for managing all feedback and bug reports. admin.png

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

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

Support

If you encounter any issues or have questions, please open an issue on GitHub.

serhiikorniienko/laravel-kuchi 适用场景与选型建议

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

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

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-06-14