I want to have show dates translated in "de" and in this format:
Thu, Mar 8, 2018 - 6:30
I have in "app.php":
'locale' => 'de',
Then in a view Im using:
{{$post->date->toDayDateTimeString()}}
But the result still appears in "en":
Thu, Mar 8, 2018 6:30 AM
But for example using other carbon method: {$post->date->diffForHumans()}}
the result appears in "de", but I dont want that format, I want the toDayDateTimeString()
format.
Do you know how to also have this format toDayDateTimeString() translated another language? So is possible to show the date like "Thu, Mar 8, 2018 - 6:30" in another language?