[Feature Request]: option to make column with empty heading #1482
Replies: 3 comments
-
To avoid ColumnSelect etc conflicts, thought is to add public bool $hideLabel = false; to cols trait Then Then Finally Not something that's been asked for previously, and could be achieved with existing methods, but worth implementing. |
Beta Was this translation helpful? Give feedback.
-
It's in progress, but I need to write a few tests for it, and update the docs. Expect this maybe next week! |
Beta Was this translation helpful? Give feedback.
-
https://discord.com/channels/1118369537155399690/1162844763129655366 |
Beta Was this translation helpful? Give feedback.
-
Overview
Sometimes we don't want to have the td value, for example for the actions.
right now I do it like this:
Column::make('')->label(fn($row) => view('includes.datatable.invoice.menu')->withRow($row))
I think we can make the title nullable, it'll be more readable
Column::make()->label(fn($row) => view('includes.datatable.invoice.menu')->withRow($row))
Detailed explanation
No response
Notes
No response
Beta Was this translation helpful? Give feedback.
All reactions