承接 gokulsingh/quick-note 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

gokulsingh/quick-note

Composer 安装命令:

composer require gokulsingh/quick-note

包简介

README 文档

README

Quick Note is a Filament plugin that allows users to create and manage quick notes with categories and images.

Features

✅ Create, edit, and delete notes
✅ Organize notes into categories
✅ Upload images for notes and categories
✅ User-based note management

Installation

composer require gokulsingh/quick-note

Publish Migrations & Assets

php artisan vendor:publish --tag=quick-note-migrations
php artisan migrate

Usage

Register the Plugin in Filament Panel

In your PanelProvider.php, add:

use Gokulsingh\QuickNote\QuickNotePlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            QuickNotePlugin::make()->role('admin')
        ]);
}

Database Structure

Notes Table

Column Type Description
id int Primary Key
title string Note title
description text Note content
image string Note image (optional)
notes_category_id foreignId Linked to notes_categories
user_id foreignId Linked to users
created_at timestamp Timestamp

Notes Categories Table

Column Type Description
id int Primary Key
name string Category name
description text Category description
image string Category image
created_at timestamp Timestamp

Screenshots

🚀 Coming soon!

Contributing

Feel free to submit issues and pull requests to improve the plugin!

Support My Work ❤️

If you find this plugin useful, consider supporting me:

Buy Me a Coffee

License

This package is open-source and licensed under the MIT License.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-03-15