[streams-platform] - table builder - Is there options to add condition and render results in admin?
Created 7 years ago by lckamal

I wanted to filter data based on some query. I saw setEntries in tablebuilder but doesn't seems to work.

eg.

$entries = $educations->getByUser($id);
return $table->setEntries($entries)->render();
ryanthompson  —  7 years ago Best Answer

$table->setTableEntries($entries) I think is what you are looking for - $table in your example is really the builder. So set them on the object.