如何在 laravel 中使用碳从现在起 20 分钟后获取时间?

How to get time after 20 minutes from now using carbon in laravel?

我想在 laravel 中使用碳计算 20 分钟后的时间。我怎样才能做到这一点?

$minutes = 20;

$delivery_time =Carbon::now()->add($minutes,'minute')->format('h:m');

试试这个:

Carbon::now()->addMinutes($minutes)->format('h:m')

文档:https://carbon.nesbot.com/docs/