Laravel: 本地日名未显示

Laravel: Local Dayname is not displaying

我的本地日名有问题。

代码来自 index.blade.php

{{  Carbon\Carbon::parse($case->created_at)->formatLocalized('%A, %e %B %Y') }}

并且输出应该是例如:Sonntag, 08.04.2018 但它 returnsSunday, 08.04.2018

我还在 AppServiceProvider.php 中添加了以下代码:

Carbon::setUTF8(true);
Carbon::setLocale('de');

我该如何解决这个问题?提前致谢

首先尝试设置您的环境语言环境

app()->setLocale('de');
Carbon::setLocale('de');
setlocale(LC_TIME, 'German');