From 457576f2f55bdff153ff85079c45e90ee4921aa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 6 Mar 2026 17:40:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[approvals]=20=EC=9C=84=EC=B4=89?= =?UTF-8?q?=EC=A6=9D=EB=AA=85=EC=84=9C=20PDF=20=EC=83=81=EB=8B=A8=20?= =?UTF-8?q?=EC=97=AC=EB=B0=B1=20=EC=B6=95=EC=86=8C=20(=EC=A0=84=EC=B2=B4?= =?UTF-8?q?=20=EC=9C=84=EC=B9=98=20=EC=83=81=ED=96=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/AppointmentCertService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Services/AppointmentCertService.php b/app/Services/AppointmentCertService.php index 8343f90b..fd024765 100644 --- a/app/Services/AppointmentCertService.php +++ b/app/Services/AppointmentCertService.php @@ -69,7 +69,7 @@ public function generatePdfResponse(array $content): \Illuminate\Http\Response $pdf->setPrintHeader(false); $pdf->setPrintFooter(false); - $pdf->SetMargins(20, 40, 20); + $pdf->SetMargins(20, 20, 20); $pdf->SetAutoPageBreak(true, 20); $font = $this->getKoreanFont(); @@ -77,12 +77,12 @@ public function generatePdfResponse(array $content): \Illuminate\Http\Response $pdf->AddPage(); // 상단 여백 - $pdf->Ln(20); + $pdf->Ln(10); // 제목 $pdf->SetFont($font, 'B', 22); $pdf->Cell(0, 20, '위 촉 증 명 서', 0, 1, 'C'); - $pdf->Ln(20); + $pdf->Ln(14); $pageWidth = $pdf->getPageWidth() - 40; $thWidth = 30;