We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2c3ba56 + 59ac55d commit 3a61807Copy full SHA for 3a61807
README.md
@@ -86,7 +86,7 @@ php artisan migrate
86
You can publish the config file with:
87
88
```bash
89
-php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="settings"
+php artisan vendor:publish --provider="Spatie\LaravelSettings\LaravelSettingsServiceProvider" --tag="config"
90
```
91
92
This is the contents of the published config file:
src/LaravelSettingsServiceProvider.php
@@ -24,7 +24,7 @@ public function boot()
24
if ($this->app->runningInConsole()) {
25
$this->publishes([
26
__DIR__ . '/../config/settings.php' => config_path('settings.php'),
27
- ], 'settings');
+ ], 'config');
28
29
if (! class_exists('CreateSettingsTable')) {
30
0 commit comments