First Aid list, amount list and kitchen list PDF download implemented

This commit is contained in:
2026-03-28 22:28:55 +01:00
parent 7bea223ded
commit 2d17e61cc8
6 changed files with 408 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Providers;
use Dompdf\Dompdf;
class PdfGenerateAndDownloadProvider {
public static function fromHtml(string $html, string $orientation = 'portrait'): string
{
$dompdf = new Dompdf();
$dompdf->loadHtml($html, 'UTF-8');
$dompdf->setPaper('A4', $orientation);
$dompdf->render();
return $dompdf->output();
}
}