laravel-stripe-connect
SkillCommerce & financeYour AI can build the money side of a multi-vendor marketplace: bringing sellers on board, taking commissions, paying sellers out, and splitting each sale. It works with Stripe Connect, Stripe's product for platforms that pay many sellers. Use it when your marketplace needs to move money between buyers, sellers, and the platform.
Available today. Use it from your connected AI after setup.
No other account needed.
After adding the skill, tell your AI which part of your marketplace payments to build first, such as seller onboarding or splitting a sale with a commission. It will use Stripe Connect to put that flow in place.
Then ask your AI: use the laravel-stripe-connect skill
What your AI can do with it
- Onboard sellers so they can receive payments on your marketplace
- Split each sale between your platform and the seller
- Take a commission on marketplace sales
- Send payouts to sellers
- Set up multi-vendor payment flows with Stripe Connect
What this skill tells your AI
The instructions your AI receives, as published by fusengine/agents in plugins/laravel-expert/skills/laravel-stripe-connect/SKILL.md and read by ahel’s review.
Laravel Stripe Connect
Agent Workflow (MANDATORY)
Before ANY implementation, spawn 3 agents in parallel, one Agent call each with a name:
- fuse-ai-pilot:explore-codebase - Check existing payment setup, Seller model
- fuse-ai-pilot:research-expert - Verify latest Stripe Connect docs via Context7
- mcp__context7__query-docs - Query specific patterns (account types, payment flows)
After implementation, run fuse-ai-pilot:sniper for validation.
Overview
Stripe Connect enables platforms and marketplaces to accept payments and pay out sellers/service providers.
| Use Case | Example | This Skill |
|---|---|---|
| Marketplace | Etsy, eBay | ✅ Yes |
| On-demand services | Uber, DoorDash | ✅ Yes |
| Crowdfunding | Kickstarter | ✅ Yes |
| SaaS with payouts | Substack, Teachable | ✅ Yes |
| Simple SaaS | Netflix, Notion | ❌ Use billing |
Key Difference: Billing vs Connect
| Aspect | Laravel Cashier | Stripe Connect |
|---|---|---|
| Money flow | Customer → You | Customer → Seller (via you) |
| Accounts | 1 Stripe account | Platform + N seller accounts |
| Use case | Subscriptions | Multi-party payments |
| Complexity | Simple | Complex |
Critical Rules
- Verify seller identity - KYC required before payouts
- Handle negative balances - Platform liable if seller can't cover refunds
- Webhook-driven - Never trust client-side for payment confirmation
- Store account IDs - Always persist
stripe_account_idon sellers - Test with test mode - Use test account IDs before production
- Understand liability - Know who pays for disputes per account type
Architecture
app/
├── Http/
│ ├── Controllers/
│ │ └── Connect/
│ │ ├── SellerOnboardingController.php
│ │ ├── MarketplacePaymentController.php
│ │ └── PayoutController.php
│ └── Middleware/
│ └── EnsureSellerOnboarded.php
├── Models/
│ ├── Seller.php ← Connected account holder
│ └── Transaction.php ← Payment records
├── Listeners/
│ └── ConnectWebhookHandler.php
└── Services/
└── StripeConnectService.php
config/
└── services.php ← Stripe keys
routes/
└── web.php ← Webhook routes (no CSRF)
Decision Guide
Which Account Type?
Who handles customer support?
├── Seller handles everything → Standard
├── Platform handles support → Express or Custom
│ ├── Need full UI control? → Custom
│ └── Want Stripe's dashboard? → Express (recommended)
Which Payment Flow?
Who appears on customer's bank statement?
├── Seller's name → Direct charges
├── Platform's name → Destination charges (recommended)
└── Complex split? → Separate charges + transfers
Key Concepts
| Concept | Description | Reference |
|---|---|---|
| Connected Account | Seller's Stripe account linked to platform | account-types.md |
| Onboarding | KYC process for sellers | onboarding.md |
| Application Fee | Platform's commission on payments | fees-commissions.md |
| Destination Charge | Payment with automatic transfer to seller | payment-flows.md |
| Payout | Transfer from Stripe balance to bank | payouts.md |
Reference Guide
Concepts (WHY & Architecture)
| Topic | Reference | When to Consult |
|---|---|---|
| Overview | overview.md | Understanding Connect fundamentals |
| Account Types | account-types.md | Choosing Standard/Express/Custom |
| Payment Flows | payment-flows.md | Direct vs Destination vs Transfers |
| Onboarding | onboarding.md | Seller verification process |
| Fees & Commissions | fees-commissions.md | Platform revenue model |
| Payouts | payouts.md | Paying sellers |
| Refunds & Disputes | refunds-disputes.md | Handling chargebacks |
| Compliance | compliance.md | Legal and tax requirements |
Templates (Complete Code)
| Template | When to Use |
|---|---|
| Seller.php.md | Seller model with Connect integration |
| SellerOnboardingController.php.md | OAuth and onboarding flow |
| MarketplacePaymentController.php.md | Creating charges with fees |
| PayoutController.php.md | Managing seller payouts |
| ConnectWebhookHandler.php.md | Webhook event handling |
| ConnectRoutes.php.md | Route definitions |
Quick Reference
Create Connected Account
$account = \Stripe\Account::create([
'type' => 'express',
'country' => 'FR',
'email' => $seller->email,
'capabilities' => [
'card_payments' => ['requested' => true],
'transfers' => ['requested' => true],
],
]);
$seller->update(['stripe_account_id' => $account->id]);
Create Onboarding Link
$link = \Stripe\AccountLink::create([
'account' => $seller->stripe_account_id,
'refresh_url' => route('connect.onboarding.refresh'),
'return_url' => route('connect.onboarding.complete'),
'type' => 'account_onboarding',
]);
return redirect($link->url);
Destination Charge with Fee
$payment = \Stripe\PaymentIntent::create([
'amount' => 10000, // €100.00
'currency' => 'eur',
'payment_method' => $paymentMethodId,
'confirm' => true,
'application_fee_amount' => 1500, // €15.00 platform fee
'transfer_data' => [
'destination' => $seller->stripe_account_id,
],
]);
Check Account Status
$account = \Stripe\Account::retrieve($seller->stripe_account_id);
$isOnboarded = $account->charges_enabled && $account->payouts_enabled;
$needsInfo = !empty($account->requirements->currently_due);
Best Practices
DO
- Use Express accounts for most marketplaces
- Implement webhook handlers for all Connect events
- Store transaction records locally
- Handle
account.updatedto track onboarding status - Use idempotency keys for payment creation
- Test with Stripe CLI and test clocks
DON'T
- Enable payouts before KYC completion
- Ignore negative balance scenarios
- Skip webhook signature verification
- Hardcode Stripe account IDs
- Forget to handle dispute notifications
- Process refunds without checking seller balance
Laravel 13 Notes
Stripe Connect (stripe/stripe-php 16.x) est compatible Laravel 13. Adaptations :
- Webhook Connect : exclure
connect/webhookdePreventRequestForgery(voir [[laravel-auth]]) account.updatedhandler : utiliserContext::add('stripe_account', $accountId)pour propager dans la queue- PHP 8.3 :
final readonly classpourSellerDTO etPayoutResult
Signals
- GitHub stars
- 25
- Forks
- 4
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by fusengine, not stripe
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
laravel-stripe-connect- Source
- github.com/fusengine/agents