$charge = StripeCharge::create(array(
'amount' => $orderTotal, //total amount that will be paid by the user.
'currency' => 'inr', //currency in which he is paying
'customer' => $customer->id,
'description' => 'Test Purchase', //Payment description
));