diff --git a/src/Resources/Row.php b/src/Resources/Row.php index 8349dca..6f46ce0 100644 --- a/src/Resources/Row.php +++ b/src/Resources/Row.php @@ -49,7 +49,7 @@ public function getCell(string $columnName) public function getCells(): Collection { return collect($this->cells)->map(function ($cell) { - return new Cell($this->client, $cell); + return new Cell($this->client, (array) $cell); }); }