Introducing Laravel Quizzes! Play now

Laravel Livewire Tables Documentation

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

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

public function configure(): void
{
    $this->setDebugStatus(true);
    $this->setDebugStatus(false);
}

setDebugEnabled

Enable debugging for the component.

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

setDebugDisabled

Disable debugging for the component.

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