I recently found my bootstrap 5 tooltips stopped working after I use livewire to validate or do any certain task. Whenever livewire sends the data to the server to validate or change something, my tooltips come like the normal title tag.
After Validation:
[
Blade HTML:
<abbr data-bs-toggle="tooltip"
data-bs-placement="left"
data-bs-html="true"
title="{!! trans('mmhg_fullform') !!}">
{!! trans('mmhg') !!}
</abbr>
Not really sure why is this happening, I also have a code in js
$('[data-bs-toggle="tooltip"]').tooltip();
Do we have to make certain changes anywhere to use bootstrap tooltips in livewire components?
