aiarmada/filament-chip
最新稳定版本:v1.0.0
Composer 安装命令:
composer require aiarmada/filament-chip
包简介
A Filament admin plugin to explore CHIP data ingested by the aiarmada/chip package.
README 文档
README
Filament admin plugin for exploring CHIP payment data.
Installation
composer require aiarmada/filament-chip
Register the plugin in your Filament panel:
use AIArmada\FilamentChip\FilamentChipPlugin; public function panel(Panel $panel): Panel { return $panel ->plugin(FilamentChipPlugin::make()); }
Resources
The plugin provides three Filament resources under CHIP Operations:
| Resource | Description |
|---|---|
| Purchases | View payment purchases with status, amounts, and client info |
| Payments | Track payment transactions, fees, and settlements |
| Clients | Browse customer profiles and contact information |
All resources are read-only with real-time polling.
Configuration
Publish the config file:
php artisan vendor:publish --tag="filament-chip-config"
Key options in config/filament-chip.php:
'navigation_group' => 'CHIP Operations', 'polling_interval' => '45s', 'tables' => [ 'created_on_format' => 'Y-m-d H:i:s', 'amount_precision' => 2, ],
Billing Portal (Optional)
A customer-facing billing portal for managing subscriptions and payment methods.
Requires: aiarmada/cashier-chip
Register the billing panel provider:
// config/app.php 'providers' => [ AIArmada\FilamentChip\BillingPanelProvider::class, ],
Access at /billing with pages for:
- Dashboard
- Subscriptions
- Payment Methods
- Invoices
Requirements
- PHP ^8.4
- Laravel ^12.0
- Filament ^5.0
- aiarmada/chip
License
MIT
统计信息
- 总下载量: 97
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-06