1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:54:04 +00:00

Fix variable

This commit is contained in:
Samuel Štancl 2019-01-19 23:19:05 +01:00
parent 6473806d0d
commit b786643094

View file

@ -58,10 +58,10 @@ trait BootstrapsTenancy
}
// storage_path()
$this->app->useStoragePath($this->app->storagePath() . $path);
$this->app->useStoragePath($this->app->storagePath() . "/{$suffix}");
// asset()
$this->app('url')->forceRootUrl(asset('') . $url);
$this->app('url')->forceRootUrl(asset('') . "/{$suffix}");
$this->oldStoragePaths = $old;
}