Laravel Livewire Tables Documentation

🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.

This is the documentation for v1 but the latest version is v3. You can switch versions in the menu at the top. Check your current version with the following command:

composer show rappasoft/laravel-livewire-tables

Misc. Functionality

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