From c99f0273b2f4f9ed6da46bd5bf4ace70d69b8943 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 25 Feb 2019 15:20:51 +0100 Subject: [PATCH] wip #2609 @1 --- src/GtagFrontProvider.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/GtagFrontProvider.php b/src/GtagFrontProvider.php index 2bf8d5f..88a625b 100644 --- a/src/GtagFrontProvider.php +++ b/src/GtagFrontProvider.php @@ -14,14 +14,14 @@ class GtagServiceProvider extends ServiceProvider */ public function boot() { - $this->loadViewsFrom(__DIR__.'/../../resources/views', 'gtag'); + $this->loadViewsFrom(__DIR__ . '/../resources/views', 'gtag'); $this->publishes([ - __DIR__.'/../../resources/config/config.php' => config_path('googleanalytics.php'), + __DIR__ . '/../resources/config/config.php' => config_path('googleanalytics.php'), ], 'config'); $this->publishes([ - __DIR__.'/../../resources/views' => base_path('resources/views/vendor/cubist/gtag'), + __DIR__ . '/../resources/views' => base_path('resources/views/vendor/cubist/gtag'), ], 'views'); $this->app['view']->creator( @@ -35,7 +35,7 @@ class GtagServiceProvider extends ServiceProvider */ public function register() { - $this->mergeConfigFrom(__DIR__ . '/../../resources/config/config.php', 'gtag'); + $this->mergeConfigFrom(__DIR__ . '/../resources/config/config.php', 'gtag'); $googleAnalytics = new GoogleAnalytics(config('gtag.id')); -- 2.39.5