Laravel Stripe Connect: Easy Marketplace Payments With Stripe
Laravel Stripe Connect helps create marketplaces with direct payments from Stripe account to recipients using Payable trait: `auth()->user()->pay(10000, 'usd');
Laravel Stripe Connect helps you start your own marketplace platform using Stripe Connect, which allows you to make payments to your recipients directly from your Stripe account to theirs. Using the provided package, you can quickly set up your application's users, connect them to your Stripe account, and start making payouts.
Using the Payable trait in this package, you can onboard users and then start sending them payments:
use SimonHamp\LaravelStripeConnect\Traits\Payable; class User extends Model{ use Payable;} // After onboarding, send the user $100.00 USDauth()->user()->pay(10000, 'us...