kayzer24/laravel-stripe-connect

A set of tools to help integrating with Stripe Connect

Maintainers

Package info

github.com/kayzer24/laravel-stripe-connect

pkg:composer/kayzer24/laravel-stripe-connect

Fund package maintenance!

kayzer24

Statistics

Installs: 17

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.1 2025-11-21 16:27 UTC

This package is auto-updated.

Last update: 2026-02-25 09:12:20 UTC


README

This is a maintained fork of rap2hpoutre/laravel-stripe-connect by Raphaël Huchet (@rap2hpoutre).

With Laravel Stripe Connect, you can start your own marketplace platform using Stripe Connect which allows you to make transfers to your recipients directly from your Stripe account to theirs.

Laravel Stripe Connect provides a starting point to help you get your users set up and connected to your Stripe account and start making payouts in no time.

Tip

This package assumes that your User model is what will represent recipients of transfers from your platform, however this can be changed.

Sponsorship

Laravel Stripe Connect is completely free to use for personal or commercial use. If it's making your job easier or you just want to make sure it keeps being supported and improved, I'd really appreciate your donations!

Donate now via GitHub Sponsors

Thank you 🙏

Installation

Install via Composer:

composer require kayzer24/laravel-stripe-connect

Add your Stripe credentials in .env:

STRIPE_PUBLISHABLE_KEY=pk_test_XxxXXxXXX
STRIPE_SECRET_KEY=sk_test_XxxXXxXXX

Run migrations:

php artisan migrate

Important

If you intend to use a table other than your users table to record your recipients' Stripe account details, publish the migration by running php artisan vendor:publish and select the appropriate options. You can then edit the published migration in your app's database/migrations folder.

Usage

Add the Payable trait to any model that you consider to represent your recipient.

use Kayzer24\LaravelStripeConnect\Traits\Payable;

class User extends Model
{
    use Payable;

Then you can use the convenient methods available to get your recipients to set up or connect their Stripe account to your platform.

Here's an example route that will get your user to go through the Stripe Connect onboarding flow:

Route::get('/connect', function () {
    if (! auth()->user()->getStripeAccountId()) {
        auth()->user()->createStripeAccount(['type' => 'express']);
    }

    if (! auth()->user()->isStripeAccountActive()) {
        return redirect(auth()->user()->getStripeAccountLink());
    }

    return redirect('dashboard');
})->middleware(['auth']);

Once a user's Stripe account is all connected and active, you can start creating transfers:

auth()->user()->transfer(10000, 'usd');

Note

Stripe expects amounts in the smallest denomination for the currency (in this case, cents), so the above is a transfer of US$100 to the logged-in user.