simplesquid / nova-vend
A Laravel Nova tool for our PHP SDK and Laravel package for Vend POS.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: ^7.2
- illuminate/support: ^6.0
- laravel/nova: ^2.0
- simplesquid/laravel-vend-sdk: ^0.3
Requires (Dev)
- orchestra/testbench: ^3.8|^4.0
This package is auto-updated.
Last update: 2024-10-28 19:34:01 UTC
README
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.
Installation
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, ]; }
OAuth Authorisation
This tool currently only supports OAuth 2.0 authorisation with the Vend API.