Laravel Open Food Facts API
This package provides a convenient wrapper to the Open Food Facts API for Laravel applications (5.7+).
Installation
You can install the package via composer:
composer require openfoodfacts/openfoodfacts-laravel
Usage
Find product details by barcode
OpenFoodFacts::barcode('20203467');
it returns an array with product details:
Array
(
[product_name] => Cantuccini with hazelnuts
[image_url] => https://static.openfoodfacts.org/images/products/20203467/front_fr.4.400.jpg
...
)
Find products that match a search term:
$collection = OpenFoodFacts::find('Coca Cola Zero');
//returns a Illuminate\Support\Collection of arrays with details of each product found
Contributing
You're very welcome to contribute. We coordinate on the Open Food Facts slack, on the #PHP channel : https://slack.openfoodfacts.org Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.