#Adding a class to the column headers
1Column::make('Other')
2 ->addClass('hidden md:table-cell'), // Hide this header on mobile
#Adding any attribute to the column headers
1Column::make('Other')
2 ->addAttributes(['data-toggle' => 'tooltip', 'data-placement' => 'top', 'title' => 'Tooltip on top']),