Hello, I saw few opened issue about the issue of carbon calculating the interval time for cookies https://github.com/whitecube/laravel-cookie-consent/issues/48 https://github.com/whitecube/laravel-cookie-consent/issues/56 I tested this solution and it works for me, is there any reason why it is not used? **Solution:** ``` use Carbon\Carbon; Carbon::now()->diffForHumans(Carbon::now()->addMinutes($cookie->duration), true) ``` If interested, I can create a pull request