prettus / tinyerp-client

此包最新版本(0.0.22)没有提供许可证信息。

tinyerp-api v2 客户端

0.0.22 2024-08-11 20:22 UTC

This package is auto-updated.

Last update: 2024-09-11 20:31:58 UTC


README

$client = new Client('token');

$retorno = $client->info()->get();
$entity = $retorno->data();
echo $entity->razao_social;
$retorno = $client->produto()->retrieve(349112581);
$entity = $retorno->data();
echo $entity->nome;