Is it possible to call a modal from an <a> tag?
This is the snippet of my code
@else
{{ $section->label }}
<a href="#"
wire:click.prevent="editSection('{{ $section->id }}')"
class="ml-2 text-blue-500 font-light border border-blue-800 rounded px-1.5 py-0.5 hover:bg- blue-800 hover:text-white transition-colors duration-300">
Edit
</a>
@endif