PHPackages                             deniztezcan/laravel-sendcloud-shipping - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. deniztezcan/laravel-sendcloud-shipping

ActiveLibrary[API Development](/categories/api)

deniztezcan/laravel-sendcloud-shipping
======================================

Laravel Wrapper for the SendCloud Shipping API

0.3.0(5y ago)1481MITPHP

Since Jan 21Pushed 5y ago1 watchersCompare

[ Source](https://github.com/deniztezcan/laravel-sendcloud-shipping)[ Packagist](https://packagist.org/packages/deniztezcan/laravel-sendcloud-shipping)[ Docs](https://github.com/deniztezcan/laravel-sendcloud-shipping)[ RSS](/packages/deniztezcan-laravel-sendcloud-shipping/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (4)Dependencies (2)Versions (4)Used By (0)

Laravel Sendcloud (shipping) API
================================

[](#laravel-sendcloud-shipping-api)

[![Latest Stable Version](https://camo.githubusercontent.com/b7f9937c8c09fb73670a4e3341b2ce43c8109e40e2a5f6037c84097f818e68c1/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d73656e64636c6f75642d7368697070696e672f762f737461626c65)](https://packagist.org/packages/deniztezcan/laravel-sendcloud-shipping)[![Total Downloads](https://camo.githubusercontent.com/486f3a8cd5c09d213ba3ea6aa7242ebd9741cc54791886e7523a25dbca26816b/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d73656e64636c6f75642d7368697070696e672f646f776e6c6f616473)](https://packagist.org/packages/deniztezcan/laravel-sendcloud-shipping)[![Latest Unstable Version](https://camo.githubusercontent.com/396b9a07190f232efdd38e751909f88bb8a3d2b58cb8994b43ccf302c820c135/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d73656e64636c6f75642d7368697070696e672f762f756e737461626c65)](https://packagist.org/packages/deniztezcan/laravel-sendcloud-shipping)[![License](https://camo.githubusercontent.com/10ac02beb555ad6464b3cab11a1b7332622fec517c4014c9560129d33fa78511/68747470733a2f2f706f7365722e707567782e6f72672f64656e697a74657a63616e2f6c61726176656c2d73656e64636c6f75642d7368697070696e672f6c6963656e7365)](https://packagist.org/packages/deniztezcan/laravel-sendcloud-shipping)

A Laravel Wrapper for the SendCloud Shipping API based on the `picqer/sendcloud-php-client` package.

### Instalation

[](#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

[](#configuration)

Please set your API: `key` and `secret` in the `config/shipping-sendcloud.php`

### Usage

[](#usage)

To create and get a printable label you can use the following code. The ordernumber is optional.

```
