{{ $news->category->name }}
{{ $news->published_at ? $news->published_at->format('F j, Y') : __('Not published') }}
@if($news->read_time)
{{ $news->read_time }} min read
@endif
{{ $news->title }}
{{ optional($news->author)->full_name ?? 'Unknown' }}
{{ optional($news->author)->position ?? '' }}
{!! $news->content !!}
@if($news->gallery_images && count($news->gallery_images) > 0)
{{ __('Gallery') }}
@foreach($news->gallery_images as $image)
@endforeach