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}