I'm currently available for full time hire! Inquire Here

Laravel Livewire Tables Documentation

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

This is the documentation for 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

Available Methods

These are the available configuration methods for the secondary header.


setSecondaryHeaderStatus

Enabled by default, enable/disable the secondary header for the component.

1public function configure(): void
2{
3 $this->setSecondaryHeaderStatus(true);
4 $this->setSecondaryHeaderStatus(false);
5}

setSecondaryHeaderEnabled

Enable the secondary header on the component.

1public function configure(): void
2{
3 // Shorthand for $this->setSecondaryHeaderStatus(true);
4 $this->setSecondaryHeaderEnabled();
5}

setSecondaryHeaderDisabled

Disable the secondary header on the component.

1public function configure(): void
2{
3 // Shorthand for $this->setSecondaryHeaderStatus(false);
4 $this->setSecondaryHeaderDisabled();
5}

See also: secondary header styling. secondary header column configuration.