We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f294d50 commit 1b0ecf1Copy full SHA for 1b0ecf1
2 files changed
README.md
@@ -36,7 +36,7 @@ and add the package name in require with the branch name after the dev:
36
Include the scripts before your end body tag in your .blade template:
37
```php
38
...
39
- @include('simple-analytics::scripts')
+ @include('LaravelPackage::scripts')
40
</body>
41
```
42
## Configuration
src/SimpleAnalyticsServiceProvider.php
@@ -25,7 +25,7 @@ public function boot()
25
__DIR__ . '/config/config.php' => config_path('simple-analytics.php'),
26
], 'config');
27
28
- $this->loadViewsFrom(__DIR__ . '/resources/views', 'simple-analytics');
+ $this->loadViewsFrom(__DIR__ . '/resources/views', 'LaravelPackage');
29
30
if (config('simple-analytics.track-api')) {
31
$router = $this->app->make(Router::class);
0 commit comments