PHP code example of codicastudio / setting-manager
1. Go to this page and download the library: Download codicastudio/setting-manager library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
codicastudio / setting-manager example snippets
// in app/Providers/NovaServiceProvider.php
public function tools()
{
return [
// ...
new \codicastudio\SettingManager\SettingManagerTool
];
}
\codicastudio\SettingManager\SettingManagerTool::addSettingsFields([
Text::make('Some setting', 'some_setting'),
Number::make('A number', 'a_number')
]);
// OR
// Using a callable
\codicastudio\SettingManager\SettingManagerTool::addSettingsFields(function() {
return [
Text::make('Some setting', 'some_setting'),
Number::make('A number', 'a_number'),
];
});