Laravel Spark - 通知卡住和 Stripe 唠叨发布存在的密钥

Laravel Spark - Notifications stuck & Stripe nagging for publishing key that exists

只是想知道是否有其他人遇到 Laravel Spark 的这个问题,其中通知间歇性地卡在加载中,是否有简单的修复方法?

即:

此外,每当我尝试在我的生产环境中订阅时,我都会在我的错误控制台中收到此 Stripe 错误,我在环境文件中使用了正确的测试凭据:

Uncaught Error: You did not set a valid publishable key. Call Stripe.setPublishableKey() with your publishable key. For more info, see https://stripe.com/docs/stripe.js
    at Function.b.validateKey ((index):3)
    at Function.b.create ((index):2)
    at Function.c.createToken ((index):2)
    at o.subscribe (app.js:27)
    at click (eval at pa (app.js:67), <anonymous>:3:52019)
    at e (app.js:67)
    at HTMLButtonElement.t._withTask.t._withTask (app.js:67)

在我的 .env 文件中(为了这个问题,我已经放入了 x,env 文件有真正的密钥):

STRIPE_MODEL=App\User
STRIPE_KEY=pk_test_Nq6IKWIFjSaBFngxxxxxxxxx
STRIPE_SECRET=sk_test_T9lwCHZACcty5JUxxxxxxxxx

app/services.phpapp/services-stripe.php 都有这些设置:

'stripe' => [
    'model'  => App\User::class,
    'key'    => env('STRIPE_KEY'),
    'secret' => env('STRIPE_SECRET'),
],

感谢任何帮助,谢谢大家。

我的通知也有同样的情况。显然与 font awesome 的微调器存在某种冲突。我完全删除了图标,现在可以使用了。与邀请函一样,当我发送邀请函时,按钮上的文字会发生变化,但微调框不会隐藏。