🎉 Enjoying this package? Consider sponsoring me on GitHub or buying me a beer.
This is the documentation for 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
Common Issues
Property Errors
The strong recommendation is to not publish the views for this package. The vast majority of elements can be customised using methods within the package.
See "Available Methods" in most sections for details, some examples: DataTable Styling Bulk Actions Styling
Previously Published Views
The strong recommendation is to not publish the views for this package. If you have published the views prior to v3.4.5, and do not wish to remove these, then you should add the following method, to disable the newer (more efficient) behaviour:
1public function configure(): void2{3 $this->useComputedPropertiesDisabled();4}