@extends('layouts.app') @section('title', $post->title . ' | Prophet') @section('meta_description', $post->summary) @section('content')
@if($post->category) {{ $post->category->name }} @endif

{{ $post->title }}

Tarih: {{ $post->published_at->translatedFormat('d M Y') }}
@if($post->featured_image)
{{ $post->title }}
@endif
{!! $post->content !!}
PAYLAŞ:
@if($relatedPosts->isNotEmpty())

İlişkili Yazılar

@foreach($relatedPosts as $related)
@if($related->category) {{ $related->category->name }} @endif

{{ $related->title }}

@if($related->summary)

{{ $related->summary }}

@endif
@endforeach
@endif
@endsection