Laravel Livewire Tables Documentation

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

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

Debugging

Configuration

setDebugStatus

Disabled by default, enable/disable debugging for the component.

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

setDebugEnabled

Enable debugging for the component.

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

setDebugDisabled

Disable debugging for the component.

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