Laravel Livewire Tables Documentation

🎉 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 at the top. Check your current version with the following command:

composer show rappasoft/laravel-livewire-tables

Adding Custom Markup

If you would like to append any custom markup right before the end of the component, you may use the customView method and return a view.

This is good for loading extra content such as modals.

1public function customView(): string
2{
3 return 'includes.custom';
4}