stepanets/kww-domstorlib-c
C library for a DOM-style storage layer (domstorlib-c), packaged for PHP/Laravel workflows. Provides low-level primitives for storing and retrieving structured data in a DOM-like format, aimed at embedding in other tools rather than end-user apps.
First creates domstor builder:
$builder = new Domstor_Builder();
Then build $domstor object, you must define two parameters org_id and location_id:
$domstor = $builder->build(array(
'org_id' => 1, // Organisation id
'location_id' => 2004, // Location id
));
Get $list object. You must specify $page number by getting it through request or some other way
$list = $domstor->getList($object, $action, $page);
How can I help you explore Laravel packages today?