Laravel 收银员账单门户语言
Laravel Cashier Billing Portal Language
有什么方法可以更改 laravel 收银员的 stripe 计费门户的语言吗?
像这样
request()->user()->updateStripeCustomer(['preferred_locales' => ['el']]);
但对于计费门户
request()->user()->redirectToBillingPortal()
我认为您无法使用 laravel 收银台执行此操作,因为即使使用 Stripe 的 API 也无法执行此操作。计费门户将根据浏览器的默认语言自动显示门户的本地化版本(只要它是受支持的语言之一 https://stripe.com/docs/billing/subscriptions/integrating-customer-portal#previewing-and-testing)。
有什么方法可以更改 laravel 收银员的 stripe 计费门户的语言吗?
像这样
request()->user()->updateStripeCustomer(['preferred_locales' => ['el']]);
但对于计费门户
request()->user()->redirectToBillingPortal()
我认为您无法使用 laravel 收银台执行此操作,因为即使使用 Stripe 的 API 也无法执行此操作。计费门户将根据浏览器的默认语言自动显示门户的本地化版本(只要它是受支持的语言之一 https://stripe.com/docs/billing/subscriptions/integrating-customer-portal#previewing-and-testing)。