Triggering on Card to show table
Even after emitting the event and clicking the card, the showTable method does not seem to be triggering as expected. It does not show the table
The table --
class Dashboard extends BaseDashboard
{
use BaseDashboard\Concerns\HasFiltersForm;
protected static ?int $navigationSort = -2;
protected static string $routePath = 'Dashboard';
protected static ?string $title = 'Dashboard';
public function getWidgets(): array
{
return [
AccountWidget::class,
FilamentInfoWidget::class,
StatsOverview::class,
LatestChecked::class,
];
}
}```
1 Reply
Solution
Try $dispatch, $emit was removed in v3 of livewire.