From 0a2a02bd5b18ac433aa2272823ea25b2a6ca57d3 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Fri, 9 Aug 2024 11:51:49 -0500 Subject: [PATCH] Update PdfInvoiceController.php --- app/Http/Controllers/PdfInvoiceController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/PdfInvoiceController.php b/app/Http/Controllers/PdfInvoiceController.php index 8a0321f..8badc7c 100644 --- a/app/Http/Controllers/PdfInvoiceController.php +++ b/app/Http/Controllers/PdfInvoiceController.php @@ -133,7 +133,7 @@ class PdfInvoiceController extends Controller $this->pdf->Cell(2, .3, '$'.number_format($this->invoiceData['grandTotal'], 2), 1); } - public function output($dest = 'D', $name = null) + public function output($dest = 'I', $name = null) { if (! $name) { $name = auditionSetting('auditionAbbreviation').' Invoice for '.$this->school->name.'.pdf';