Search code examples
laravelstripe-paymentslaravel-cashier

Laravel Cashier - Stripe - set preferred locale to a customer


I want to create a customer (or edit a existing one) adding a preferred_locales value.

Is there a way to do it directly with Laravel Cashier? If not, what would be the best workaround?


Solution

  • Here is a simpler and more up to date way to do it

    $user->updateStripeCustomer(['preferred_locales' => ['es']]);