skip to Main Content

Laravel Cashier Stripe address information

I have a problem with providing the customers address information to stripe. This is my checkout process for the stripe hosted checkout process: $user = $request->user(); return $user->newSubscription(config('stripe.product'), $plan) ->allowPromotionCodes() ->checkout([ 'success_url' => route('success'), 'cancel_url' => route('dashboard'), 'customer' => […

VIEW QUESTION
Back To Top
Search