accession_number . '.docx'; $filepath = ReportStorage::customFilepath($study, $filename); if (ReportStorage::exists($study, $filename)) { return $filepath; } $html = $report->getContent(); $docx = new CreateDocx; $docx->embedHTML($html); $docx->createDocx(ReportStorage::abspath($filepath)); return $filepath; } }