sortable() bug on custom livewire component that render Filament Table() in a module
✅ Solved4️⃣v4
Basically when pressing the default sort button from the table, it returns a ComponentNotFoundException despite the page is able to be rendered at the first time.
public function render(): View { return view('module::livewire.material-usage'); } '''
Livewire\Exceptions\ComponentNotFoundExceptionvendor\livewire\livewire\src\Mechanisms\ComponentRegistry.php:116Unable to find component: [module.livewire.material-usage]
Livewire\Exceptions\ComponentNotFoundExceptionvendor\livewire\livewire\src\Mechanisms\ComponentRegistry.php:116Unable to find component: [module.livewire.material-usage]
Is sortable() is not working on a Livewire::make(TableComponent::class) or is this a bug? The issue here is that the after being rendered the first time, the component unable to update itself.
Additional Note; Create Action is also not working.