rappasoft/laravel-livewire-tables
Laravel Livewire Tables provides dynamic, feature-rich data tables for Laravel Livewire with sorting, searching, filtering, pagination, bulk actions, and Bootstrap/Tailwind support. Build reusable table components backed by Eloquent queries.
These are the available configuration methods for the secondary header.
Enabled by default, enable/disable the secondary header for the component.
public function configure(): void
{
$this->setSecondaryHeaderStatus(true);
$this->setSecondaryHeaderStatus(false);
}
Enable the secondary header on the component.
public function configure(): void
{
// Shorthand for $this->setSecondaryHeaderStatus(true);
$this->setSecondaryHeaderEnabled();
}
Disable the secondary header on the component.
public function configure(): void
{
// Shorthand for $this->setSecondaryHeaderStatus(false);
$this->setSecondaryHeaderDisabled();
}
See also: secondary header styling. secondary header column configuration.
How can I help you explore Laravel packages today?