@if($post->featured_image || $post->featured_image_url)
{!! method_exists($post, 'translate') ? $post->translate('content') : ($post->content ?? '') !!}
{{ $post->author && $post->author->role ? $post->author->role : 'Trunçgil Teknoloji Editörü' }}
Trunçgil Teknoloji editörleri tarafından kaleme alınmış bu makalede teknoloji, yazılım geliştirme ve dijital dönüşüm konularına dair güncel gelişmeleri incelediniz. Destek ve sorularınız için bizimle iletişime geçebilirsiniz.
@if($relatedPosts && $relatedPosts->count() > 0)
Bunları da Beğenebilirsiniz
@foreach($relatedPosts as $rPost)
@php
$rTitle = method_exists($rPost, 'translate') ? $rPost->translate('title') : $rPost->title;
$rCategoryName = $rPost->category ? $rPost->category->name : '';
$rImageUrl = $rPost->featured_image ? asset('storage/' . $rPost->featured_image) : asset('assets/img/photos/tb4.jpg');
$rUrl = route('blog.show', $rPost->slug);
$rDate = $rPost->published_at ? $rPost->published_at->format('d M Y') : $rPost->created_at->format('d M Y');
@endphp
Devamını Oku
@endforeach
@endif