In my Laravel 6 app, I have Carbon::now()->locale()
returning it
as it should be.
As confirmation that the locale is loaded, Carbon::now()->monthName
correctly outputs febbraio
.
BUT Carbon::now()->format('F')
and Carbon::now()->formatLocalized('%B')
both return the english version February
.
Why does the first function output the correct localized month while the others do not?