toDataSet
Use the toDataSet
method to transform an entity ORM object into a WireBootstrap DataSet object. This method transform allows an ORM query to participate in the dynamic bindings of UI components.
const dataset = Categories.select(CategoriesField.CategoryName).toDataSet();
new wire.datatables().render("#table", {data: dataset});
Last updated