fixed: use directory for storeIn

This commit is contained in:
Philipp Lang 2022-12-09 13:03:30 +01:00
parent f075f67526
commit cdff8dded1
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ abstract class BaseCompiler implements Responsable
{ {
$contents = $this->file->getContent(); $contents = $this->file->getContent();
Storage::disk($disk)->put($this->file->getFilename(), $contents); Storage::disk($disk)->put($directory.'/'.$this->file->getFilename(), $contents);
return $this->file->getFilename(); return $this->file->getFilename();
} }