From 0b3c64dca508cdea46bb97cbffb16bf1db637f6a Mon Sep 17 00:00:00 2001 From: Krystian Duma Date: Tue, 27 Dec 2022 19:27:08 +0100 Subject: [PATCH] Fix Path --- src/Laravel/WebPrintClientServiceProvider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Laravel/WebPrintClientServiceProvider.php b/src/Laravel/WebPrintClientServiceProvider.php index 1ec0c4a..e5ccc15 100644 --- a/src/Laravel/WebPrintClientServiceProvider.php +++ b/src/Laravel/WebPrintClientServiceProvider.php @@ -17,7 +17,7 @@ public function boot() { if ($this->app->runningInConsole()) { $this->publishes([ - __DIR__.'/../config/config.php' => config_path('webprint.php'), + __DIR__.'/../../config/config.php' => config_path('webprint.php'), ], 'config'); } }