FilamentF
Filament7mo ago
o.m

Why doesnt livewire:click work on modal?

I have a modal and I button calls a function

text-messages-content.blade.php
<button wire:click="test" type="button" class="btn btn-secondary">Schedule Text Message</button>


TextMessagesContent::class
    public function test()
    {
        dd("test");
    }

nothing happens when I click on the button
Was this page helpful?