ralphjsmit/laravel-filament-components
Composer 安装命令:
composer require ralphjsmit/laravel-filament-components
包简介
A collection of reusable components for Filament.
README 文档
README
A collection of reusable components for Filament.
This package is a collection of handy components for you to use in all your Filament projects. It provides handy components that can be used in almost any project, like sidebars, timestamps & more.
PRs are welcome, so if you've made a handy component yourself, feel free to send a pull request!
Installation
You can install the package via composer:
composer require ralphjsmit/laravel-filament-components
Usage
Currently, the following components are available:
Sidebar
You can use the Sidebar component to split the form into two distinct sections, like a sidebar:
use RalphJSmit\Filament\Components\Forms\Sidebar; Sidebar::make([ // Components for the main section here ],[ // Components for the sidebar section here ])
If you're using it in the Admin panel, you can use the Sidebar in your form() method:
use Filament\Forms\Components\Section; use Filament\Forms\Components\TextInput; use Filament\Resources\Form; use RalphJSmit\Filament\Components\Forms\Timestamps; use RalphJSmit\Filament\Components\Forms\Sidebar; public static function form(Form $form): Form { return $form->schema([ Sidebar::make([ Section::make() ->schema([ TextInput::make('title')->label('Title'), // ... ]), // ... ], [ Section::make() ->schema([ ...Timestamps::make(), // ... ]), // ... ]), ]); }
Sidebars work very nicely with the Section component to define distinct and easily scannable sections in your interface.
Timestamps
Use the Timestamps component to display a 'Created at' and 'Updated at' timestamp for your record:
use RalphJSmit\Filament\Components\Forms\Timestamps; return $form->schema([ ...Timestamps::make(), // ]);
The Timestamps component returns an array with the CreatedAt and UpdatedAt components below, so you should use array spreading like in the example to merge the components into your own array.
CreatedAt
Use the CreatedAt component to display the created_at timestamp for your record:
use RalphJSmit\Filament\Components\Forms\CreatedAt; return $form->schema([ CreatedAt::make(), // ]);
UpdatedAt
Use the UpdatedAt component to display the updated_at timestamp for your record:
use RalphJSmit\Filament\Components\Forms\UpdatedAt; return $form->schema([ UpdatedAt::make(), // ]);
DeletedAt
Use the DeletedAt component to display the deleted_at timestamp for your soft-delete record:
use RalphJSmit\Filament\Components\Forms\DeletedAt; return $form->schema([ DeletedAt::make(), // ]);
Timestamp
Use the Timestamp component to display a custom timestamp for your record. Internally, all of the above timestamps
use this component.
use RalphJSmit\Filament\Components\Forms\Timestamp; return $form->schema([ Timestamp::make('email_verified_at'), // ]);
General
🐞 If you spot a bug, please submit a detailed issue and I'll try to fix it as soon as possible.
🔐 If you discover a vulnerability, please review our security policy.
🙌 If you want to contribute, please submit a pull request. All PRs will be fully credited. If you're unsure whether I'd accept your idea, feel free to contact me!
🙋♂️ Ralph J. Smit
ralphjsmit/laravel-filament-components 适用场景与选型建议
ralphjsmit/laravel-filament-components 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 77.32k 次下载、GitHub Stars 达 110, 最近一次更新时间为 2022 年 02 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「ralphjsmit」 「laravel-filament-components」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ralphjsmit/laravel-filament-components 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ralphjsmit/laravel-filament-components 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ralphjsmit/laravel-filament-components 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A package containing handy helpers for your Laravel-application.
A package to handle the SEO in any Laravel application, big or small.
Get the previous and current url in Livewire.
A package to combine the power of Laravel SEO and Filament Admin.
Create forms, modals and slide-overs with ease.
Auto-magically generate responsive images from static image files.
统计信息
- 总下载量: 77.32k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 110
- 点击次数: 24
- 依赖项目数: 5
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-18
