在使用laravel 5.4创建Stripe订阅时,有没有像paypal这样的通知网址来跟踪未来的付款?

Is there any way in laravel to track future recurring payments automatically from stripe. Like we have notification url in paypal. Or i have to depend on crons?

Stripe do have webhook which will notify your laravel website about events that happen in a Stripe account.

If you are using the subscription based model in stripe, you can just go through the subscription life cycle

You will get notified for each of every events in subscription lifecycle, which you can use for your purpose