spatie / blender

The Laravel template used for our CMS like projects
https://freek.dev/on-open-sourcing-blender
877 stars 148 forks source link

Wrong config file reference in PrefetchAnalyticsData #364

Closed pixelpeter closed 7 years ago

pixelpeter commented 7 years ago

In App\Console\Command\PrefetchAnalyticsData in line 34 you reference the config file for the laravel-analyticspackage as

...
if (empty(config('laravel-analytics.view_id'))) {
...

To get it working I need to change it to:

...
if (empty(config('analytics.view_id'))) {
...
freekmurze commented 7 years ago

Fixed, thanks for letting us know.