-
Hello,
I encountered an issue with the following code:
```php
echo CarbonInterval::fromString('1yr 1mo 3w 3d 14h 23m 57s');
```
Carbon version: **2.41.5**
PHP version: **7.2.34**
…
-
Hello,
I encountered an issue with the following code:
```php
$interval = \Carbon\CarbonInterval::weeks(-1);
echo $interval->forHumans(\Carbon\CarbonInterface::DIFF_RELATIVE_TO_NOW);
```
C…
-
Hello,
Is there a way to globally change the `CarbonInterval::__toString()` format? I'm using `CarbonInterval` in a generic class which type juggle to string when an attribute is `Stringable`.
…
Max13 updated
2 years ago
-
Hello,
Today we switch to DST so I already hit some [strange behavour](https://stackoverflow.com/questions/55084109/laravel-sqlstate22007-invalid-datetime-format-1292-incorrect-datetime-value), b…
-
I use my own instance of FF3 running in a docker container using official image. I've set up a cron job for it (according to [these instructions](https://docs.firefly-iii.org/firefly-iii/advanced-inst…
-
When running cron for reccuring i reciving such error. I am using PL locales.
```
[2021-04-29 17:01:23] local.ERROR: Exception is: {"class":"Symfony\\Component\\Translation\\Exception\\InvalidArgu…
-
Hello,
I encountered an issue with the following code:
```php
$start = Carbon\Carbon::create(2009, 9)->startOfMonth();
$end = Carbon\Carbon::create(2012, 2)->endOfMonth();
$inte…
-
Greetings!
I encountered an issue with the following code:
```php
echo Carbon\CarbonInterval::seconds(0)->forHumans();
```
Carbon version: **2.41.5**
PHP version: **7.4.5**
I ex…
-
Hello,
I encountered an issue with the following code:
```php
echo Carbon\CarbonInterval::days(7)->forHumans();
echo Carbon\CarbonInterval::days(1)->forHumans();
```
Carbon version: **2.27…
-
Hello,
I encountered an issue with the following code:
```php
echo CarbonInterval::seconds(0)->cascade()->forHumans(['short' => true]);
echo CarbonInterval::fromString('0s')->cascade()->forHum…