I am showing the dates in my view show using Carbon from the controller, but when displaying in Spanish the dates are not shown with "Wednesday" or "Saturday.
Controller
$tiempo = new Carbon($orden->Fecha_de_Inicio);
setlocale(LC_TIME, 'es');
$orden->Fecha_de_Inicio = $tiempo->formatLocalized('%a %d de %B de %Y - %H:%M%p');
View
<div class="col-lg-4 col-md-12 col-sm-12 col-xs-12">
<div class="box box-solid box-info" data-widget="box-widget">
<div class="box-header centrar-texto">
Inicio: {{$orden->Fecha_de_Inicio}}
<h3 class="box-title">
</h3>
</div>
</div>
</div>
I have tried changing the setlocale (LC_TIME, 'is'); but the dates are still not shown in the format I need.
My project is in local host, at the time of placing the project in the hosting all dates are shown in English even using the setlocale (LC_TIME, 'is');