Skip to content

Commit 1b0ecf1

Browse files
committed
try again
1 parent f294d50 commit 1b0ecf1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and add the package name in require with the branch name after the dev:
3636
Include the scripts before your end body tag in your .blade template:
3737
```php
3838
...
39-
@include('simple-analytics::scripts')
39+
@include('LaravelPackage::scripts')
4040
</body>
4141
```
4242
## Configuration

src/SimpleAnalyticsServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function boot()
2525
__DIR__ . '/config/config.php' => config_path('simple-analytics.php'),
2626
], 'config');
2727

28-
$this->loadViewsFrom(__DIR__ . '/resources/views', 'simple-analytics');
28+
$this->loadViewsFrom(__DIR__ . '/resources/views', 'LaravelPackage');
2929

3030
if (config('simple-analytics.track-api')) {
3131
$router = $this->app->make(Router::class);

0 commit comments

Comments
 (0)