@php $publishedAt = $published_at ? \Carbon\Carbon::parse($published_at) : null; @endphp
{{ __('labels.created_by') }} {{-- {{ $creator ?? 'N/A' }} --}} {{ $creator ?? __('labels.system') }}
@if($publishedAt)
{{ __('labels.published_at') }} @if ($publishedAt) {{ $publishedAt->format('d.m.Y') }} {{-- {{ $published_at ? date('d.m.Y', strtotime($published_at)) : '' }} --}} {{ $publishedAt->format('H:i') }} {{-- {{ $published_at ? date('H:i', strtotime($published_at)) : '' }} --}} @else N/A @endif
@endif @if(isset($views) && $views)
{{ __('labels.views') }} {{ $views ?? 0 }}
@endif