- Creating Columns
- Relationships
- Available Methods
- Other Column Types
- Column Selection
- Secondary Header
- Footer
Getting Started
Usage
DataTable
Columns
Rows
Sorting
Pagination
Search
Bulk Actions
Filters
Reordering
Secondary Header
Footer
Examples
Misc.
🎉 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 on the left/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();
}