Replies: 1 comment 1 reply
-
You can create a table class using the protected function hasHeader(Collection $columns, Collection|Paginator|CursorPaginator $row): bool
{
return true;
} This method is responsible for displaying the table headers. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I see in the Table class, the determinant for whether headers are shown is if there are 2 or greater columns. Is there a way to gracefully force them to appear on a single column table (or not appear when >2)?
Beta Was this translation helpful? Give feedback.
All reactions