承接 zaynasheff/boards 相关项目开发

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

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

zaynasheff/boards

Composer 安装命令:

composer require zaynasheff/boards

包简介

Kanban boards plugin for Filament

README 文档

README

Boards is a plugin for Filament that adds kanban board style functionality to your admin panel.

Features

Boards provides a flexible and modern kanban experience inside Filament.

  • Unlimited boards
    Create and manage as many boards as you need for different workflows, teams, or processes.

  • Drag & drop columns and cards
    Easily reorder columns and move cards between them using an intuitive drag & drop interface.

  • Multitenancy support
    Built-in multitenancy allows boards to be scoped per team or organization.

  • Multi-language support
    Fully localized using Laravel’s translation system, with support for multiple languages out of the box.

  • Fully customizable UI
    Customize the appearance of boards, columns, and cards to match your application’s design.

Installation

You can install the package via composer:

composer require zaynasheff/boards

Database Migrations

Boards requires database migrations to function properly.

Publish and run the migrations during installation:

php artisan vendor:publish --tag="boards-migrations"
php artisan migrate

Register the plugin

Register the plugin in your Filament panel provider:

app/Providers/Filament/AdminPanelProvider.php

use Zaynasheff\Boards\BoardsPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            BoardsPlugin::make(),
        ]);
}

Plugin Configuration

You can customize how the Boards plugin appears in the Filament navigation by chaining configuration methods when registering the plugin.

use Zaynasheff\Boards\BoardsPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            BoardsPlugin::make()
                ->title('CRM'),
                ->navigationLabel('CRM')
                ->navigationIcon('heroicon-o-users')
                ->navigationGroup('Marketing')
                ->navigationSort(-1)
               
        ]);
}
Method Description
navigationLabel(string $label) Sets the navigation label
navigationIcon(string $icon) Sets the navigation icon (Heroicons)
navigationGroup(string $group) Assigns the plugin to a navigation group
navigationSort(int $sort) Controls navigation order
title(string $title) Sets the page title

Localization (Translations)

Boards supports multiple languages and uses Laravel’s built-in localization system.

All user-facing strings are translatable and can be customized for your application.

Publishing Translation Files

To publish the translation files, run:

php artisan vendor:publish --tag="boards-translations"

Multitenancy Support

Boards supports optional multitenancy, allowing you to scope boards and related data to the currently active tenant
(for example: Company, Team, etc.).

This is useful if your application serves multiple organizations or teams within a single Filament panel.

Enabling Multitenancy

To enable multitenancy support, publish the configuration file if you haven’t already:

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

Then open the config file:

config/boards.php

Set multitenancy to true:

return [

    'multitenancy' => true,

    // ...
];

Tenant Configuration

When multitenancy is enabled, you must configure how Boards resolves the current tenant.

Uncomment and configure the tenant array:

return [

    'multitenancy' => true,

    'tenant' => [
        'model' => \App\Models\Company::class,
        'table' => 'companies',
        'foreign_key' => 'company_id',
    ],

];
Key Description
model Eloquent model representing the tenant
table Database table used by the tenant model
foreign_key Foreign key added to Boards tables

Preparing the Database

After enabling multitenancy and configuring the tenant, run the following command:

php artisan boards:enable-multitenancy

This command will:

  • publish or update required migrations

  • add tenant foreign keys to Boards tables

  • prepare the database for multitenant usage

Then run migrations:

php artisan migrate

Disabling Multitenancy

If you need to disable multitenancy later, run:

php artisan boards:disable-multitenancy

This will revert the database structure back to single-tenant mode where possible.

Notes

  • Multitenancy is disabled by default

  • Boards will automatically scope all queries to the currently active tenant

  • The tenant resolution logic is compatible with Filament’s panel context

  • You are responsible for ensuring the active tenant is correctly resolved in your application

View Customization (Optional)

If you want to fully customize the appearance of Boards, you can publish the plugin views:

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

Credits

License

The MIT License (MIT). Please see License File for more information.

zaynasheff/boards 适用场景与选型建议

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

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

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

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

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-22