@extends('backoffice.layout.master') @section('setSectionTitle', $newsItem->title) @section('setSectionButton') {{ __('Torna alle News') }} @endsection @section('setContent')

{{ $newsItem->title }}

{{ $newsItem->refExpert->first_name }} {{ $newsItem->refExpert->last_name }} {{ $newsItem->created_at->format('d/m/Y H:i') }}
{!! nl2br(e($newsItem->content)) !!}
@if($newsItem->updated_at != $newsItem->created_at)
{{ __('Ultimo aggiornamento') }}: {{ $newsItem->updated_at->format('d/m/Y H:i') }}
@endif
@endsection @section('setBodyEnd') @endsection