- Making Columns
- Built-in searching
- Built-in sorting
- Built-in cell formatting
- Conditional columns
- User column selection
- Secondary Header Functionality
- Footer Functionality
- Misc. Functionality
Getting Started
Usage
Columns
The Query
Row
Bulk Actions
Filters
Customizing
Display
🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.
This is the documentation for v1 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
Per-page dropdown
The per-page dropdown defaults to 10, 25, and 50 items per page.
You can overwrite this array on your component class with the $perPageAccepted
property.
1public array $perPageAccepted = [100, 200, 500];
If you would like to add an option to show All results on one page, while still keeping pagination enabled you can set this class property:
1public bool $perPageAll = true;
This will add an All
option to the end of the per-page dropdown.
If you would like to set the default selection in the dropdown to something other than the first, set $perPage
equal to an item in your $perPageAccepted
array.
For more options on configuring pagination and per-page see Display.