Skip to content

Commit 50b5209

Browse files
committed
try replace root slashes
1 parent 0ce0fab commit 50b5209

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LogViewerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function register()
2323

2424
$this->app['config']['filesystems.disks.log-viewer-local'] = [
2525
'driver' => 'local',
26-
'root' => storage_path('logs'),
26+
'root' => str_replace('\\', '/', storage_path('logs')),
2727
];
2828

2929
$this->app->bind('log-viewer', LogViewerService::class);

0 commit comments

Comments
 (0)