Boolean status

How can I change boolean status to Yes or No lable in Table Column?
Solution:
->formatStateUsing(fn ($state) => $state ? 'Yes' : 'No')
Jump to solution
1 Reply
Solution
Dennis Koch
Dennis Koch11mo ago
->formatStateUsing(fn ($state) => $state ? 'Yes' : 'No')

Did you find this page helpful?