PHP code example of bizhub / unleashed

1. Go to this page and download the library: Download bizhub/unleashed library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bizhub / unleashed example snippets


\Bizhub\Unleashed\Products::get();
\Bizhub\Unleashed\Products::find($quid);

\Bizhub\Unleashed\ProductGroups::get();

\Bizhub\Unleashed\BillOfMaterials::get();
\Bizhub\Unleashed\BillOfMaterials::find($quid);

\Bizhub\Unleashed\SalesOrders::get();
\Bizhub\Unleashed\SalesOrders::find($quid);

\Bizhub\Unleashed\StockAdjustments::get();
\Bizhub\Unleashed\StockAdjustments::find($quid);
\Bizhub\Unleashed\StockAdjustments::create($quid, [...]);

\Bizhub\Unleashed\StockOnHand::get();
\Bizhub\Unleashed\StockOnHand::find($quid);

\Bizhub\Unleashed\Warehouses::get();