@extends('site.layouts.app') @section('title', $post->title . ' | ' . config('site.name')) @section('description', Str::limit($post->description, 160)) @section('content')

{{ $post->title }}

{{ $post->title }}
{{ $post->category }} {{ optional($post->published_at)->format('Y-m-d') }}
{!! $post->body !!}
@if($related->count())
مقالات ذات صلة
@foreach($related as $item)
{{ $item->title }}
{{ optional($item->published_at)->format('Y-m-d') }}
@endforeach @endif
@endsection