This package make a connection to the sevdesk api and lets you interact with it.
You can install the package via composer:
composer require netstack-de/laravel-sevdesk-api
Set your api token in the .env
file like this:
SEVDESK_API_TOKEN=xxxxxxxx
Optionally you can publish the config file with:
php artisan vendor:publish --provider="NetstackDE\LaravelSevdeskApi\SevdeskApiServiceProvider" --tag="config"
This is the contents of the published config file:
return [
/*
* Api token you from sevdesk.
*/
'api_token' => env('SEVDESK_API_TOKEN', ''),
];
For usage instructions see the Wiki
Please see the Releases Tab for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.