ibrahim-bedir/filament-dynamic-settings-page
Composer 安装命令:
composer require ibrahim-bedir/filament-dynamic-settings-page
包简介
README 文档
README
Filament Dynamic Settings Page Plugin
Save your settings quickly and simply.
Installation
You can install the package via composer:
composer require ibrahim-bedir/filament-dynamic-settings-page
Usage
Just install the package and you're ready to go!
Configuration
You can publish the config file and migrations with:
php artisan filament-dynamic-settings-page:install
This is the contents of the published config file:
<?php return [ 'title' => 'Settings', 'navigation' => [ 'label' => 'Settings', 'group' => 'Settings', 'sort' => '1', 'icon' => 'heroicon-o-cog', 'folder' => 'settings' ], 'breadcrumbs' => [ 'Settings', ], 'tool' => [ "enable" => false ], 'permission' => [ 'enable' => false, // permission name // 'name' => 'list.settings' 'name' => '' ] ];
easily accessible from the front:
add app/helpers.php
<?php use IbrahimBedir\FilamentDynamicSettingsPage\Models\Setting; function setting($key) { return Setting::where('key', $key)->first()->value('value'); }
composer.json
... "autoload": { "psr-4": { "App\\": "app/", "Database\\Factories\\": "database/factories/", "Database\\Seeders\\": "database/seeders/" }, "files": [ "app/helpers.php" ] }, ...
composer dump-autoload
welcome.blade.php
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> </head> <body class="antialiased"> {{ setting('site.title') }} </body> </html>
Things to do list
- more fields
- fields options
Lisans
The MIT License MIT. Please see License File for more information.
ibrahim-bedir/filament-dynamic-settings-page 适用场景与选型建议
ibrahim-bedir/filament-dynamic-settings-page 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.04k 次下载、GitHub Stars 达 27, 最近一次更新时间为 2022 年 09 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「filament」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ibrahim-bedir/filament-dynamic-settings-page 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ibrahim-bedir/filament-dynamic-settings-page 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ibrahim-bedir/filament-dynamic-settings-page 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Alfabank REST API integration
Database-driven onboarding for Filament: progress checklists and guided spotlight tours, translatable to any locale.
Laravel package for Accurate Online API integration.
Create-project starter for a Laravel application with the public Capell CMS foundation.
Shared RCX Laravel DataTables UI and configuration helpers.
Boot a Laravel project on any machine with one command: app:serve installs missing tools (PHP, Node, Composer, Herd, Docker), creates .env, sets up the database, runs migrations, builds assets, starts a queue worker and serves via Herd, Sail or artisan serve; app:down cleanly stops everything it sta
统计信息
- 总下载量: 2.04k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 27
- 点击次数: 14
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-30
