first item of array should be read due to dropzone returns always an array of files
This commit is contained in:
		@@ -43,7 +43,7 @@ class CreateDocument extends Job
 | 
			
		||||
 | 
			
		||||
            // Upload attachment
 | 
			
		||||
            if ($this->request->file('attachment')) {
 | 
			
		||||
                $media = $this->getMedia($this->request->file('attachment'), Str::plural($this->document->type));
 | 
			
		||||
                $media = $this->getMedia($this->request->file('attachment')[0], Str::plural($this->document->type));
 | 
			
		||||
 | 
			
		||||
                $this->document->attachMedia($media, 'attachment');
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
@@ -46,7 +46,7 @@ class UpdateDocument extends Job
 | 
			
		||||
        \DB::transaction(function () {
 | 
			
		||||
            // Upload attachment
 | 
			
		||||
            if ($this->request->file('attachment')) {
 | 
			
		||||
                $media = $this->getMedia($this->request->file('attachment'), Str::plural($this->document->type));
 | 
			
		||||
                $media = $this->getMedia($this->request->file('attachment')[0], Str::plural($this->document->type));
 | 
			
		||||
 | 
			
		||||
                $this->document->attachMedia($media, 'attachment');
 | 
			
		||||
            }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user