ошибка отображается NcJoes\OfficeConverter\OfficeConverterException
Файл не существует --test.docx
просмотр
Код: Выделить всё
@csrf
@method('POST')
title:
upload:
add
Код: Выделить всё
public function store(Request $request)
{
$validatedData = $request->validate([
'topdf' => 'required|mimes:docx',
'title'=>'required'
]);
$Name = str_replace(" ","",$request->input('title'));
$FileName = $Name . '.' . $request->topdf->extension();
$request->topdf->move(public_path('pdf'), $FileName);
$converter = new OfficeConverter($FileName);
//$fin=$converter->convertTo('output-file.pdf');
//$fin->move(public_path('pdf'), $FileName);
}
Подробнее здесь: https://stackoverflow.com/questions/655 ... er-laravel
Мобильная версия