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