Files
citrus-cms/resources/views/admin-ajax/excel-to-pdf.blade.php
T
2026-04-28 21:15:09 +03:00

18 lines
425 B
PHP

<?php
/*
use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
*/
$pdfFile = get("file");
/*
$spreadsheet = IOFactory::load(get("file"));
$writer = IOFactory::createWriter($spreadsheet, 'Xlsx');
$writer->save($pdfFile);
*/
$fullPath = xlsx_to_pdf_legacy($pdfFile, "storage/documents/013_Others/pdf");
$relativePath = strstr($fullPath, 'storage/documents');
echo url($relativePath);
?>