How to pass data from cache to widget table?
I have this data from cache
how to pass the in the query? or should I change the whole structure?
how to pass the in the query? or should I change the whole structure?
$dashboardData = new DashboardData();
$data = $dashboardData->retrieve();
$todayData = $data->get('most_sold_series'); public function table(Table $table): Table
{
return $table
->query(
// ...
)
->columns([
// ...
]);
}