Код: Выделить всё
$request->validate([
'file' => 'required|mimes:docx,doc|max:102048',
]);
$path = $request->file('file')->store('word-temp', 'public');
$realPath=storage_path('app/public/'.$path);
$name = basename($realPath);
$processedPath=storage_path('app/public/word-temp/processed/'.$name);
$this->preprocessDocx($realPath, $processedPath);
$phpWord = IOFactory::load($realPath); // in this line i get error
Скрытый HTML с PhpWord: ошибка - DOMDocument::loadXML(): префикс пространства имен o на p не определен в Entity
Подробнее здесь: https://stackoverflow.com/questions/798 ... ed-in-enti