Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. \Stripe\Stripe::setApiKey('sk_test_mainplatformkey');
  2.  
  3. $charge = \Stripe\Charge::create([
  4. 'amount' => $source->amount,
  5. 'currency' => $source->currency,
  6. 'source' => $source->id,
  7. 'stripe_account'=>'stripe_connected_account'
  8. ]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement