Customizing options labels in getRecordSelect() with additional information
I was trying to customize the labels of the options with this code, but I'm having trouble.
What am I doing wrong?
Thank you.
2 Replies
you need to use $action->getRecordSelect() in the form. you dont need to override options()
you need to use the ->recordTitle(fn ($record) => generate title from record here) on the action level
that should be it
Thank you! Using did the trick
I really appreciate your help!