我的本地日期有问题。
index.blade.php中的代码
{{ Carbon\Carbon::parse($case->created_at)->formatLocalized('%A, %e %B %Y') }}
并且输出应该是例如:Sonntag, 08.04.2018
但它返回Sunday, 08.04.2018
我还在代码中添加了我的AppServiceProvider.php:
Carbon::setUTF8(true);
Carbon::setLocale('de');
如何解决此问题?提前致谢
答案 0 :(得分:1)
尝试先设置您的env语言环境
app()->setLocale('de');
Carbon::setLocale('de');
setlocale(LC_TIME, 'German');