A Laravel Nova tool for our PHP SDK and Laravel package for Vend POS | https://docs.vendhq.com/
Contributions, issues and suggestions are very much welcome.
To install the SDK in your project you need to require the package via composer:
composer require simplesquid/nova-vend
To register the Tool in Nova, simply add it to the list of tools returned by the tools
method in your application's NovaServiceProvider
. For example:
use SimpleSquid\NovaVend\VendLogin;
/**
* Get the cards that should be listed in the Nova sidebar.
*
* @return array
*/
public function tools()
{
return [
new VendLogin,
];
}
This tool currently only supports OAuth 2.0 authorisation with the Vend API.