How to properly display data from table relationships?
Hello! Please help, I have a relationship between two tables, and I want to display the name for insurance_id, but I only see the id. I tried looking for a solution in the Filament Table Builder documentation but couldn't find one.
Solution:Jump to solution
normally its the name of the relationship.column_name so if your relationship is insurance() the you would access it via insurance.name
2 Replies
Solution
normally its the name of the relationship.column_name so if your relationship is insurance() the you would access it via insurance.name
Thank you, it worked.