Hi, It's Kieran here. Message me with your queries.

Test Payment

// Set your secret key: remember to change this to your live secret key in production
// See your keys here: https://dashboard.stripe.com/account/apikeys
\Stripe\Stripe::setApiKey("sk_test_rdrPu6XUIVTZg1neszNwrvsi");
$plan = \Stripe\Plan::create(array(
  "name" => "Basic Plan",
  "id" => "basic-monthly",
  "interval" => "month",
  "currency" => "usd",
  "amount" => 50,
));