How can you customize record title on attach action

Hello,

I would like to know if it's possible to customize record title more than just a different attribute. I would like to combine multiple attributes in to one title. Is it possible?

Thanks for any help in advance...
image.png
Solution
Tables\Actions\AttachAction::make()
    ->recordTitle(fn (Model $record): string => "{$record->id} {$record->start}")

https://github.com/filamentphp/filament/discussions/13096#discussioncomment-9674355
GitHub
Package Table builder Package Version v3.2.83 How can we help you? Hello, I would like to know if it's possible to customize record title more than just a different attribute. I would like to c...
Was this page helpful?