This commit is contained in:
2025-05-28 22:11:41 +05:00
parent 10e6a6bbed
commit 72745e6360
3 changed files with 5 additions and 6 deletions

View File

@@ -144,14 +144,14 @@ class DownloadCardTransaction extends Action
{
$mpdf = new Mpdf;
// Write HTML content
// Write HTML content...
$html = Blade::render('orders.cards.card-transaction.download-card-transaction', [
'data' => $data,
]);
$mpdf->WriteHTML($html);
// Save the PDF to a file
// Save the PDF to a file...
$mpdf->Output($fileDest, \Mpdf\Output\Destination::FILE);
}
}