deniztezcan / laravel-sendcloud-shipping
Laravel Wrapper for the SendCloud Shipping API
Package info
github.com/deniztezcan/laravel-sendcloud-shipping
pkg:composer/deniztezcan/laravel-sendcloud-shipping
0.3.0
2021-02-16 09:10 UTC
Requires
- guzzlehttp/guzzle: ~6.0
- illuminate/support: 5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*.*|7.*.*|8.*.*
This package is auto-updated.
Last update: 2026-03-16 20:50:06 UTC
README
A Laravel Wrapper for the SendCloud Shipping API based on the picqer/sendcloud-php-client package.
Instalation
composer require deniztezcan/laravel-sendcloud-shipping
Add a ServiceProvider to your providers array in config/app.php:
'providers' => [
//other things here
DenizTezcan\SendCloud\SendCloudServiceProvider::class,
];
Add the facade to the facades array:
'aliases' => [
//other things here
'SendCloud' => DenizTezcan\SendCloud\Facades\SendCloud::class,
];
Finally, publish the configuration files:
php artisan vendor:publish --provider="DenizTezcan\SendCloud\SendCloudServiceProvider"
Configuration
Please set your API: key and secret in the config/shipping-sendcloud.php
Usage
To create and get a printable label you can use the following code. The ordernumber is optional.
<?php
use DenizTezcan\SendCloud\Entities\Customer;
$customer = new Customer([
'name' => 'John Doe',
'company_name' => 'ACME Bank',
'street_address' => 'Main St',
'street_address_nr' => '123',
'city' => 'Anytown',
'postal_code' => '12345',
'country' => 'DE',
]);
$parcel = SendCloud::createSingleParcel($customer, 89, 'ORDERNO');
SendCloud::getPDFFromSingleParcel($parcel);