Repeat table column

I have a hasMany relationship that I'd like to dynamically add to a filament table based on each relationship found, is this possible? For example in my model, I have
return $this->hasMany(Paid::class)->where('paid');
return $this->hasMany(Paid::class)->where('paid');
I basically want to do a foreach in the filament table, somehow, to make a TextColumn on each one.
2 Replies
pepperoni dogfart
I was messing with that, but it still has the same problem of not letting you actually add the column(s) dynamically