orderchamp/orderchamp-laravel is a Laravel package for orderchamp laravel package.
It currently has 0 GitHub stars and 11.062 downloads on Packagist (latest version 1.2.0).
Install it with composer require orderchamp/orderchamp-laravel.
Discover more Laravel packages by orderchamp
or browse all Laravel packages to compare alternatives.
Last updated
Simple api client for using the orderchamp grahpql api in laravel.
composer require Orderchamp/orderchamp-laravel
Update your .env
ORDERCHAMP_CLIENT_ID=ca8bd79cab7987ba8c7ba34
ORDERCHAMP_CLIENT_SECRET=uRc1i3n7s3cr3t097sdf978c987a6
ORDERCHAMP_API_URL=https://api.orderchamp.com/v1
ORDERCHAMP_WEB_URL=https://www.orderchamp.com
ORDERCHAMP_VERIFY=true
Create the file config/orderchamp.php to set the proper permissions you need for your app.
<?php
return [
'scopes' => [
'account_read',
'products_read',
'products_write',
],
];