PHPackages                             onlineidentity/laravel-channable - 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. onlineidentity/laravel-channable

ActiveLibrary[API Development](/categories/api)

onlineidentity/laravel-channable
================================

Laravel wrapper for OnlineIdentity Channable API connector

v1.0.3(6mo ago)08481MITPHPPHP ^8.1

Since Mar 7Pushed 6mo agoCompare

[ Source](https://github.com/onlineidentity/laravel-channable)[ Packagist](https://packagist.org/packages/onlineidentity/laravel-channable)[ RSS](/packages/onlineidentity-laravel-channable/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Channable API connector
===============================

[](#laravel-channable-api-connector)

About
-----

[](#about)

This package creates a wrapper around [onlineidentity/channable](https://github.com/onlineidentity/channable/) for ease of use in the [Laravel framework](https://laravel.com).

Installation
------------

[](#installation)

`composer require onlineidentity/laravel-channable`

(Optional) Publish the config file with `php artisan vendor:publish --tag=channable`

Set your .env variables

```
CHANNABLE_API_TOKEN='{API_TOKEN}'
CHANNABLE_COMPANY_ID={COMPANY_ID}
CHANNABLE_PROJECT_ID={PROJECT_ID} #default, swappable after initialization
```

Usage
-----

[](#usage)

```
#Examples

# app()->make();

$channable = app()->make('channable');

//Get all orders
$channable->orders()->allOrders();

$order_id = 12345678;
$channable->orders()->shipment($order_id, [
    'tracking_code' => '3S1234567890',
    'transporter' => 'POSTNL',
    'order_item_ids' => [
        1,
        2
    ]
]);

//Get all returns with queryParameters
$channable->returns()->allReturns(['limit' => 2, 'last_modified_after' => '2022-01-01']);

//update returns status
$return_id = 12345678;
$status_accepted = \OnlineIdentity\Enums\ReturnsType::ACCEPTED;
$channable->returns()->updateReturnStatus($return_id, $status_accepted);

# Using the facade

//get all orders
$orders = \OnlineIdentity\LaravelChannable\Facades\Channable::orders()->allOrders();

//change project id
\OnlineIdentity\LaravelChannable\Facades\Channable::setProjectId(123456);

\OnlineIdentity\LaravelChannable\Facades\Channable::orders()->shipment($order_id, [
    'tracking_code' => '3S1234567890',
    'transporter' => 'POSTNL',
    'order_item_ids' => [
        1,
        2
    ]);
```

For more details and options visit the offical channable docs

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance67

Regular maintenance activity

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~322 days

Total

4

Last Release

195d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8bbd2c4e395ebc0f4d543d84532955c1f911138f6b793ce13f04288b98345796?d=identicon)[OnlineIdentity](/maintainers/OnlineIdentity)

---

Top Contributors

[![Bryans91](https://avatars.githubusercontent.com/u/4056932?v=4)](https://github.com/Bryans91 "Bryans91 (4 commits)")

---

Tags

apilaravelconnectorchannable

### Embed Badge

![Health badge](/badges/onlineidentity-laravel-channable/health.svg)

```
[![Health](https://phpackages.com/badges/onlineidentity-laravel-channable/health.svg)](https://phpackages.com/packages/onlineidentity-laravel-channable)
```

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[api-ecosystem-for-laravel/dingo-api

A RESTful API package for the Laravel and Lumen frameworks.

3121.5M10](/packages/api-ecosystem-for-laravel-dingo-api)[smodav/mpesa

M-Pesa API implementation

16363.7k1](/packages/smodav-mpesa)[specialtactics/l5-api

Dependencies for the Laravel API Boilerplate package

3672.8k2](/packages/specialtactics-l5-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
