@php
$projectDescription = $project->getTranslation('description', app()->getLocale(), false);
@endphp
@if($projectDescription)
{!! $projectDescription !!}
@endif
{{ App::getLocale() == 'es' ? '. cursos' : '. courses' }}
@foreach($news as $novelty)
@php
$noveltyTitle = $novelty->getTranslation('title', app()->getLocale(), false);
@endphp
@if($noveltyTitle)
@endif
@endforeach
@endif
@endsection