“Как использовать DOMPDF в Ларавеле” Ответ

Как использовать DOMPDF в Ларавеле

//run following command
composer require dompdf/dompdf

// reference the Dompdf namespace
use Dompdf\Dompdf;

// instantiate and use the dompdf class
$dompdf = new Dompdf();
//pass html code to following function
$dompdf->loadHtml(<html>html</html>);

// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');

// Render the HTML as PDF
$dompdf->render();

// Output the generated PDF to Browser
$dompdf->stream();
Isaac

Установите Laravel Dompdf

composer require barryvdh/laravel-dompdf --ignore-platform-reqs
Wide-eyed Wolf

Ответы похожие на “Как использовать DOMPDF в Ларавеле”

Вопросы похожие на “Как использовать DOMPDF в Ларавеле”

Больше похожих ответов на “Как использовать DOMPDF в Ларавеле” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования