Sortable() and Searchable() not behaving as expected

Hello,

Not sure why this Filament table is not behaving as expected when clicking the arrow to sort or typing into the search field. Suggestions?

https://gist.github.com/wrperin/e6181516c7606e1e352bc0d424cca6ad
Gist
Livewire component with Filament table - Filament sortable() and searchable() not behaving as expected - ListMembers.php
Solution
Well, I've made some progress! I used a bit of Povilas' alpine.js conflict article, and I added
use Livewire\Attributes\Layout;
#[Layout('layouts.app')]
in my livewire component class. This fixed my sortable and searchable problem!
Was this page helpful?