承接 araga-dev/filament-invertible-fields 相关项目开发

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

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

araga-dev/filament-invertible-fields

Composer 安装命令:

composer require araga-dev/filament-invertible-fields

包简介

Invertible (include/except) fields and table filters for Filament 4 (MultiSelect & TextInput).

README 文档

README

Fields and Table Filters for Filament 4 that let users switch between Include (Only) and Exclude (Except) modes with a single toggle.

Included:

  • InvertibleMultiSelect + InvertibleMultiSelectFilter

  • InvertibleTextInput + InvertibleTextInputFilter (comma-separated by default)

  • Package: araga-dev/filament-invertible-fields

  • Namespace: Araga\FilamentInvertibleFields

  • View namespace: filament-invertible-fields::

  • Translations: resources/lang/en, resources/lang/pt_BR

Installation

composer require araga-dev/filament-invertible-fields

(Laravel will auto-discover the service provider.)

Optional:

php artisan vendor:publish --tag="filament-invertible-fields-views"
php artisan vendor:publish --tag="filament-invertible-fields-translations"

Usage

MultiSelect Filter

use Araga\FilamentInvertibleFields\Tables\Filters\InvertibleMultiSelectFilter;

InvertibleMultiSelectFilter::make('status')
    ->label(__('filament-invertible-fields::messages.status'))
    ->column('status')
    ->options([
        'draft' => 'Draft',
        'published' => 'Published',
        'archived' => 'Archived',
    ]);

MultiSelect Field

use Araga\FilamentInvertibleFields\Forms\Components\InvertibleMultiSelect;

InvertibleMultiSelect::make('values')
    ->options([ '1' => 'One', '2' => 'Two' ]);

Text Filter (comma-separated list by default)

use Araga\FilamentInvertibleFields\Tables\Filters\InvertibleTextInputFilter;

InvertibleTextInputFilter::make('sku')
    ->label(__('filament-invertible-fields::messages.sku'))
    ->column('sku')
    ->listSeparator(','); // "123, 456, 789"

Text Field

use Araga\FilamentInvertibleFields\Forms\Components\InvertibleTextInput;

InvertibleTextInput::make('values')
    ->listSeparator(','); // optional

i18n

  • English and Brazilian Portuguese included.
  • You can publish and edit the translation files with the command above.

License

MIT

araga-dev/filament-invertible-fields 适用场景与选型建议

araga-dev/filament-invertible-fields 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 08 月 21 日, 在 PHP 生态内属于活跃度较高的组件。

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

围绕 araga-dev/filament-invertible-fields 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-08-21