Is it possible to handle a description from a related table?

Is it possible to handle a description from a related table? The relationship is there.
Tables\Columns\TextColumn::make('name')
    ->description(fn(Table_1 $record): string => $record->table_2.field),

( ->table_2.field doesnt work )
Solution
do you mean $record->yourRelationship->field ?
Was this page helpful?