承接 codehero-mx/nova-settings-tool 相关项目开发

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

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

codehero-mx/nova-settings-tool

Composer 安装命令:

composer require codehero-mx/nova-settings-tool

包简介

A Laravel Nova tool for editing custom settings using native Nova fields.

关键字:

README 文档

README

Latest Version on Packagist Total Downloads

This Laravel Nova package allows you to create custom settings in code (using Nova's native fields) and creates a UI for the users where the settings can be edited.

Requirements

  • php: >=8.0
  • laravel/nova: ^4.26

Features

  • Settings fields management in code
  • UI for editing settings
  • Helpers for accessing settings
  • Rule validation support

Screenshots

Settings View

Installation

Install the package in a Laravel Nova project via Composer and run migrations:

# Install nova-settings-tool
composer require outl1ne/nova-settings-tool

# Run migrations
php artisan migrate

Register the tool with Nova in the tools() method of the NovaServiceProvider:

// in app/Providers/NovaServiceProvider.php

public function tools()
{
    return [
        // ...
        new \CodeHeroMX\SettingsTool\SettingsTool
    ];
}

Usage

Registering fields

Define the fields in your NovaServiceProvider's boot() function by calling SettingsTool::addSettingsFields().

// Using an array
\CodeHeroMX\SettingsTool\SettingsTool::addSettingsFields([
    Text::make('Some setting', 'some_setting'),
    Number::make('A number', 'a_number'),
]);

// OR

// Using a callable
\CodeHeroMX\SettingsTool\SettingsTool::addSettingsFields(function() {
  return [
    Text::make('Some setting', 'some_setting'),
    Number::make('A number', 'a_number'),
  ];
});

Registering field panels

// Using an array
\CodeHeroMX\SettingsTool\SettingsTool::addSettingsFields([
    Panel::make('Panel Title', [
      Text::make('Some setting', 'some_setting'),
      Number::make('A number', 'a_number'),
    ]),
]);

Casts

If you want the value of the setting to be formatted before it's returned, pass an array similar to Eloquent's $casts property as the second parameter.

\CodeHeroMX\SettingsTool\SettingsTool::addSettingsFields([
    // ... fields
], [
  'some_boolean_value' => 'boolean',
  'some_float' => 'float',
  'some_collection' => 'collection',
  // ...
]);

Subpages

Add a settings page name as a third argument to list those settings in a custom subpage.

\CodeHeroMX\SettingsTool\SettingsTool::addSettingsFields([
    Text::make('Some setting', 'some_setting'),
    Number::make('A number', 'a_number'),
], [], 'Subpage');

If you leave the custom name empty, the field(s) will be listed under "General".

To translate the page name, publish the translations and add a new key settingsTool.$subpage to the respective translations file, where $subpage is the name of the page (full lowercase, slugified).

Authorization

Show/hide all settings

If you want to hide the whole Settings area from the sidebar, you can authorize the SettingsTool tool like so:

public function tools(): array
{
    return [
        SettingsTool::make()->canSee(fn () => user()->isAdmin()),
    ];
}

Show/hide specific setting fields

If you want to hide only some settings, you can use ->canSee(fn () => ...) per field. Like so:

Text::make('A text field')
  ->canSee(fn () => user()->isAdmin()),

Helper functions

nova_get_settings($keys = null, $defaults = [])

Call nova_get_settings() to get all the settings formated as a regular array. Additionally, you can pass a key => value array as a second argument: nova_get_settings(['some_key], ['some_key' => 'default_value']).

nova_get_setting($key, $default = null)

To get a single setting's value, call nova_get_setting('some_setting_key'). It will return either a value or null if there's no setting with such key.

You can also pass default value as a second argument nova_get_setting('some_setting_key', 'default_value'), which will be returned, if no setting was found with given key.

nova_set_setting_value($key, $value = null)

Sets a setting value for the given key.

Configuration

The config file can be published using the following command:

php artisan vendor:publish --provider="CodeHeroMX\SettingsTool\SettingsToolServiceProvider" --tag="config"
Name Type Default Description
base_path String nova-settings-tool URL path of settings page.
reload_page_on_save Boolean false Reload the entire page on save. Useful when updating any Nova UI related settings.
models.settings Model Settings::class Optionally override the Settings model.

The migration can also be published and overwritten using:

php artisan vendor:publish --provider="CodeHeroMX\SettingsTool\SettingsToolServiceProvider" --tag="migrations"

Localization

The translation file(s) can be published by using the following command:

php artisan vendor:publish --provider="CodeHeroMX\SettingsTool\SettingsToolServiceProvider" --tag="translations"

You can add your translations to resources/lang/vendor/nova-settings-tool/ by creating a new translations file with the locale name (ie et.json) and copying the JSON from the existing en.json.

Credits

License

Nova Settings is open-sourced software licensed under the MIT license.

codehero-mx/nova-settings-tool 适用场景与选型建议

codehero-mx/nova-settings-tool 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 500 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 02 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

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

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

围绕 codehero-mx/nova-settings-tool 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-02-02