From 0faa8edd235543625858c3a9dd66bad878254305 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 6 Nov 2023 11:55:34 +0100 Subject: [PATCH] fix #6453 --- src/Excel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Excel.php b/src/Excel.php index 5b81559..9685c87 100644 --- a/src/Excel.php +++ b/src/Excel.php @@ -33,7 +33,7 @@ class Excel $line = 1; if (!is_null($head)) { - $c = 0; + $c = 1; foreach ($head as $label) { $columns = max($columns, $c); $cell = $sheet->getCellByColumnAndRow($c, $line); -- 2.39.5