toDataSet

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

const dataset = CustOrderHist.procedure().toDatSet();
    
new wire.datatables().render("#table", {data: dataset});

Last updated