Available for select projects New York · Working worldwide
Rappasoft LLC
Menu

Laravel Livewire Tables / Documentation / v1

Misc. Functionality

Installation, configuration, and usage guidance maintained with the project.

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']),