cendekia / nova-setting-tool
An app setting manager tool for laravel nova
Installs: 10 416
Dependents: 0
Suggesters: 0
Security: 0
Stars: 40
Watchers: 3
Forks: 8
Open Issues: 26
Language:HTML
Requires
- php: >=7.1.0
- doctrine/dbal: ^2.8
- unisharp/laravel-settings: ^2.0
Requires (Dev)
- orchestra/testbench: ^3.6
- phpunit/phpunit: 7.1
- dev-master
- v0.0.3
- v0.0.2
- v0.0.1
- dev-dependabot/npm_and_yarn/qs-6.4.1
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/css-what-2.1.3
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/chownr-1.1.4
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/node-sass-4.14.1
- dev-dependabot/npm_and_yarn/lodash.mergewith-4.6.2
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-develop
This package is auto-updated.
Last update: 2024-11-09 18:01:19 UTC
README
A Laravel Nova package that can change the basic admin panel settings, i.e app title, copyright texts, app version and etc by overriding the default Laravel Nova template which hopefully could help developer when starting their projects without having doing simple stuff over and over again.
Installation
You can install the package into a Laravel app that uses Nova via composer:
composer require cendekia/nova-setting-tool
And you need to publish the migration file (this come from unisharp/laravel-settings):
php artisan vendor:publish --tag=settings
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php // ... public function tools() { return [ // ... new \Cendekia\SettingTool\SettingTool, ]; }
Usage
Click on the "Settings" menu item in your Nova app to see the tool provided by this package.
Todo :
- Edit application title
- Edit version of application
- Edit copyright text
- Edit default logo
- Edit theme color
- TBA
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email me@cendekiapp.com instead of using the issue tracker.
Support
Buy me a cup of ☕ americano on the rocks. Patreon
License
The MIT License (MIT). Please see License File for more information.