diff --git a/src/Bootstrappers/FilesystemTenancyBootstrapper.php b/src/Bootstrappers/FilesystemTenancyBootstrapper.php index 743a1c49..01686915 100644 --- a/src/Bootstrappers/FilesystemTenancyBootstrapper.php +++ b/src/Bootstrappers/FilesystemTenancyBootstrapper.php @@ -97,7 +97,7 @@ class FilesystemTenancyBootstrapper implements TenancyBootstrapper protected function tenantStoragePath(string $suffix): string { - return $this->originalStoragePath . DIRECTORY_SEPARATOR . $suffix; + return rtrim($this->originalStoragePath, '/\\') . DIRECTORY_SEPARATOR . $suffix; } protected function assetHelper(string|false $suffix): void