diff --git a/src/Services/Listings/Columns/Relation.php b/src/Services/Listings/Columns/Relation.php index 686f7af21..9c6c05ec7 100644 --- a/src/Services/Listings/Columns/Relation.php +++ b/src/Services/Listings/Columns/Relation.php @@ -46,7 +46,7 @@ protected function getRenderValue(TwillModelContract $model): string /** @var \Illuminate\Database\Eloquent\Collection $relation */ $model->loadMissing($this->relation); - $relation = $model->getRelation($this->relation); + $relation = collect($model->getRelation($this->relation)); return $relation->pluck($this->field)->join(', '); }