getPaymentIntent(); return $intent->client_secret; } public function getPaymentIntent(): \Stripe\PaymentIntent { $stripe = new \Stripe\StripeClient($this->getClientSecret()); $intent = $stripe->paymentIntents->create([ 'amount' => 100, // @todo set the amount from the form setup 'currency' => 'eur', ]); return $intent; } }