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.
Disabled by default, enable/disable debugging for the component.
public function configure(): void
{
$this->setDebugStatus(true);
$this->setDebugStatus(false);
}
Enable debugging for the component.
public function configure(): void
{
// Shorthand for $this->setDebugStatus(true)
$this->setDebugEnabled();
}
Disable debugging for the component.
public function configure(): void
{
// Shorthand for $this->setDebugStatus(false)
$this->setDebugDisabled();
}
How can I help you explore Laravel packages today?