new DebugSheet(), ]; } } class DebugSheet implements OnEachRow, WithStartRow { public function startRow(): int { return 3; } public function onRow(Row $row) { $cells = $row->toArray(); echo 'Row: ' . $row->getIndex() . ' | AWB: ' . ($cells[0] ?? '') . PHP_EOL; } }