toDataSet

Use the toDataSet method to transform an entity ORM object into a WireBootstrap DataSetarrow-up-right object. This method transform allows an ORM query to participate in the dynamic bindings of UI componentsarrow-up-right.

const dataset = Categories.select(CategoriesField.CategoryName).toDataSet();

new wire.datatables().render("#table", {data: dataset});

Last updated