catname/productinfo

Get product information by GS1 code

1.1.1 2022-02-08 06:37 UTC

This package is auto-updated.

Last update: 2024-04-23 12:54:22 UTC


README

Get product information by GS1 code.

Author: ZhangHQ

Installing

$ composer require catname/productinfo

Usage

use Catname\ProductInfo\ProductInfo;

class example
{
    public function aExample(Request $request)
    {
        $productInfo = new ProductInfo();
        return $productInfo->getProductInfo($request->code);
    }
    
    /**
    * array (size=4)
        'code' => string '06907992512570' (length=14)
        'supplier' => string '内蒙古伊利实业集团股份有限公司' (length=45)
        'name' => string '安慕希希腊风味酸奶205克' (length=33)
        'specs' => string '205克' (length=6)
    */
}

Update

composer update catname/productinfo

License

MIT