├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── php-lint.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── composer.json ├── config └── nova-settings.php ├── database └── migrations │ └── 2022_05_10_224818_create_settings_table.php ├── duster.json ├── pint.json ├── screenshots ├── tool-dark.png └── tool.png └── src ├── Events ├── SettingsDeleted.php └── SettingsUpdated.php ├── Models └── Settings.php ├── NovaSettingsTool.php ├── Resources └── Settings.php ├── ToolServiceProvider.php ├── Types ├── AbstractType.php └── General.php └── helpers.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/php-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/.github/workflows/php-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release Notes 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- 1 | # Upgrading 2 | 3 | ## To 1.0.0 4 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/composer.json -------------------------------------------------------------------------------- /config/nova-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/config/nova-settings.php -------------------------------------------------------------------------------- /database/migrations/2022_05_10_224818_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/database/migrations/2022_05_10_224818_create_settings_table.php -------------------------------------------------------------------------------- /duster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/duster.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/pint.json -------------------------------------------------------------------------------- /screenshots/tool-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/screenshots/tool-dark.png -------------------------------------------------------------------------------- /screenshots/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/screenshots/tool.png -------------------------------------------------------------------------------- /src/Events/SettingsDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Events/SettingsDeleted.php -------------------------------------------------------------------------------- /src/Events/SettingsUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Events/SettingsUpdated.php -------------------------------------------------------------------------------- /src/Models/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Models/Settings.php -------------------------------------------------------------------------------- /src/NovaSettingsTool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/NovaSettingsTool.php -------------------------------------------------------------------------------- /src/Resources/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Resources/Settings.php -------------------------------------------------------------------------------- /src/ToolServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/ToolServiceProvider.php -------------------------------------------------------------------------------- /src/Types/AbstractType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Types/AbstractType.php -------------------------------------------------------------------------------- /src/Types/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/Types/General.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanenko3/nova-settings/HEAD/src/helpers.php --------------------------------------------------------------------------------