https://github.com/exlo89/laravel-sevdesk-api
Helpfull Laravel package to work with the Sevdesk API.
https://github.com/exlo89/laravel-sevdesk-api
api laravel laravel-framework laravel-package php sevdesk
Last synced: 4 months ago
JSON representation
Helpfull Laravel package to work with the Sevdesk API.
- Host: GitHub
- URL: https://github.com/exlo89/laravel-sevdesk-api
- Owner: exlo89
- License: mit
- Created: 2020-10-03T14:44:15.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2025-07-26T18:17:53.000Z (12 months ago)
- Last Synced: 2025-07-26T22:53:42.652Z (12 months ago)
- Topics: api, laravel, laravel-framework, laravel-package, php, sevdesk
- Language: PHP
- Homepage:
- Size: 136 KB
- Stars: 9
- Watchers: 2
- Forks: 13
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# laravel sevdesk api
[](https://packagist.org/packages/exlo89/laravel-sevdesk-api)
[](https://packagist.org/packages/exlo89/laravel-sevdesk-api)
[](https://github.com/exlo89/laravel-sevdesk-api/actions/workflows/testing.yml)
If you need help or you want to work with me, please visit my website and contact me.
This package make a connection to the sevdesk api and let you interact with it.
[Sevdesk API Documentation](https://hilfe.sevdesk.de/knowledge/sevdesk-rest-full-api)
## Documentation
- [Official Package Documentation](https://exlo89.github.io/laravel-sevdesk-api).
## Installation
You can install the package via composer:
```bash
composer require exlo89/laravel-sevdesk-api
```
Set your api token with
```
SEVDESK_API_TOKEN=xxxxxxxx
```
Optionally you can publish the config file with:
```bash
php artisan vendor:publish --provider="Exlo89\LaravelSevdeskApi\SevdeskApiServiceProvider" --tag="config"
```
## Usage
First Instantiate a sevdesk instance and then fetch all the data.
```php
$sevdeskApi = SevdeskApi::make();
$sevdeskApi->invoice()->allDraft();
```
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email
[hello@martin-appelmann.de](mailto:hello@martin-appelmann.de?subject=Laravel%20Sevdesk%20Issue)
instead of using the issue tracker.
## Credits
- [Martin Appelmann](https://github.com/exlo89)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
## Laravel Package Boilerplate
This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).