PHPackages                             bisual/laravel-cashier-stripe-connect - 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. bisual/laravel-cashier-stripe-connect

ActiveLibrary

bisual/laravel-cashier-stripe-connect
=====================================

Extension library for Laravel Cashier that adds Stripe Connect functionality

v2.0.2(1y ago)02.0k↓30.8%[2 PRs](https://github.com/bisual/laravel-cashier-stripe-connect/pulls)MITPHPPHP ^8.1|^8.2

Since Jul 19Pushed 1y agoCompare

[ Source](https://github.com/bisual/laravel-cashier-stripe-connect)[ Packagist](https://packagist.org/packages/bisual/laravel-cashier-stripe-connect)[ Docs](https://github.com/bisual/laravel-cashier-stripe-connect)[ RSS](/packages/bisual-laravel-cashier-stripe-connect/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (11)Versions (27)Used By (0)

Extension library for Laravel Cashier that adds Stripe Connect functionality
============================================================================

[](#extension-library-for-laravel-cashier-that-adds-stripe-connect-functionality)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c3e1b8a02d879044f7561ba8f4b9384088e458ff4ec37830f29b84101d7c9a83/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f62697375616c2f6c61726176656c2d636173686965722d7374726970652d636f6e6e6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bisual/laravel-cashier-stripe-connect)[![GitHub Tests Action Status](https://camo.githubusercontent.com/89051d11dce799f70901c4f69aed47291f4f1763cf012fddfa59ecc3df04a08d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f62697375616c2f6c61726176656c2d636173686965722d7374726970652d636f6e6e6563742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/bisual/laravel-cashier-stripe-connect/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/2903474b51427a07cd2c60e9cb877022a0c345fa59a5c8b5042a44857485a60e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f62697375616c2f6c61726176656c2d636173686965722d7374726970652d636f6e6e6563742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/bisual/laravel-cashier-stripe-connect/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/ed8cbbb6367fa76eaaff2410b98d1f0c21f54e13df510ff2d29726bc216ed388/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f62697375616c2f6c61726176656c2d636173686965722d7374726970652d636f6e6e6563742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bisual/laravel-cashier-stripe-connect)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

You can install the package via composer:

```
composer require bisual/laravel-cashier-stripe-connect
```

Usage
-----

[](#usage)

In order to add the Stripe Connectable functionality, you must add the StripeConnectable Trait to your model.

```
use Bisual\LaravelCashierStripeConnect\Traits\StripeConnectable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable {
    use StripeConnectable;
}
```

After that, make sure that your model has an stripe\_connect\_id and stripe\_status field on database. If you want to customize the key of the attributes, you must do the following:

```
use Bisual\LaravelCashierStripeConnect\Traits\StripeConnectable;
use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable {
    use StripeConnectable;

    protected $stripe_connect_db_key = "stripe_connect_id";
    protected $stripe_status_db_key = "stripe_status";
}
```

After that, you must implement the abstract functions.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Pol Ribas](https://github.com/polribas14)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 74.7% 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 ~22 days

Total

21

Last Release

588d ago

Major Versions

v1.0.17 → v2.0.02024-08-06

PHP version history (2 changes)v1.0.0PHP ^8.1

v2.0.0PHP ^8.1|^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/66426940?v=4)[Bisual](/maintainers/bisual)[@bisual](https://github.com/bisual)

---

Top Contributors

[![polribas14](https://avatars.githubusercontent.com/u/47635426?v=4)](https://github.com/polribas14 "polribas14 (56 commits)")[![emondelodev](https://avatars.githubusercontent.com/u/132818820?v=4)](https://github.com/emondelodev "emondelodev (17 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (1 commits)")

---

Tags

laravelbisuallaravel-cashier-stripe-connect

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/bisual-laravel-cashier-stripe-connect/health.svg)

```
[![Health](https://phpackages.com/badges/bisual-laravel-cashier-stripe-connect/health.svg)](https://phpackages.com/packages/bisual-laravel-cashier-stripe-connect)
```

###  Alternatives

[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[spatie/laravel-prometheus

Export Laravel metrics to Prometheus

2651.3M6](/packages/spatie-laravel-prometheus)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)

PHPackages © 2026

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