@foreach($documents ?? [] as $document)
@include('components.itemsDownLoadFiles', [ 'isShowSync'=> 1, 'id'=> $document->documentID, 'format'=> $document->format, 'filePath' => config('locations.templateGeneration.asset') . $document->filePath, 'pdfPath'=> $document->pdfPath, 'thumbnailPath'=> config('locations.templateGeneration.asset') . 'PDF_Thumbnail/' . $document->thumbnailPath, 'name'=> $document->name, 'created_at' => $document->created_at, 'updated_at' => $document->updated_at, 'file_upload_status' => $document->file_upload_status, 'showDelete' => false, 'isShowSync' => 1, 'size' => $document->size ])
@endforeach