Available for select projects New York · Working worldwide
Rappasoft LLC
Menu

Laravel Livewire Tables / Documentation / v4

Adding Custom Markup

Installation, configuration, and usage guidance maintained with the project.

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}