ExposesTableToWidgets throws error

So I am in a view order pages for an order resource, and i have added a widget. i'm trying to get the record, in the page I use ExposesTableToWidgets, but I get the livewire error Property [$activeTab] not found on component: In the trait the code is as follows:
public function getWidgetData(): array
{
return [
'activeTab' => $this->activeTab,
'paginators' => $this->paginators,
'tableColumnSearches' => $this->tableColumnSearches,
'tableFilters' => $this->tableFilters,
'tableGrouping' => $this->tableGrouping,
'tableGroupingDirection' => $this->tableGroupingDirection,
'tableRecordsPerPage' => $this->tableRecordsPerPage,
'tableSearch' => $this->tableSearch,
'tableSortColumn' => $this->tableSortColumn,
'tableSortDirection' => $this->tableSortDirection,
];
}
public function getWidgetData(): array
{
return [
'activeTab' => $this->activeTab,
'paginators' => $this->paginators,
'tableColumnSearches' => $this->tableColumnSearches,
'tableFilters' => $this->tableFilters,
'tableGrouping' => $this->tableGrouping,
'tableGroupingDirection' => $this->tableGroupingDirection,
'tableRecordsPerPage' => $this->tableRecordsPerPage,
'tableSearch' => $this->tableSearch,
'tableSortColumn' => $this->tableSortColumn,
'tableSortDirection' => $this->tableSortDirection,
];
}
What am I missing?
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?