Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $customer = \Stripe\Customer::create([
  2. 'email' => $email,
  3. 'source' => $token,
  4. "address" => array(
  5. array(
  6. "line1" => $billingAddress1,
  7. 'line2' => $billingAddress2,
  8. "city" => $city,
  9. 'postal_code' => $postCode,
  10. 'state' => '',
  11. ),
  12. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement