Laravel 5 Carbon global Locale
问题 I'm trying to set the same global locale of laravel which is : config('app.locale') to work with Carbon. It seems like you can do it by using either : Carbon::setLocale('fr') or setlocale(LC_TIME, 'theLocale'); So I have tried using middleware or providers but was not successful. (why is this not a default feature of laravel?) 回答1: So this is my bad, Carbon is actually using the php setlocale(); the Carbon::setLocale('fr') method is only for the ->diffForHumans() method. Notice that the php