- 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.
Sponsored
Advanced Usage
Examples
🎉 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 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.
1public function configure(): void2{3 $this->setDebugStatus(true);4 $this->setDebugStatus(false);5}
setDebugEnabled
Enable debugging for the component.
1public function configure(): void2{3 // Shorthand for $this->setDebugStatus(true)4 $this->setDebugEnabled();5}
setDebugDisabled
Disable debugging for the component.
1public function configure(): void2{3 // Shorthand for $this->setDebugStatus(false)4 $this->setDebugDisabled();5}