@extends('layouts.app') @section('title', $post->title) @section('content')
@if(session('success'))
{{ session('success') }}
@endif
{{-- عرض البوست --}}

{{ $post->title }}

By {{ $post->user->name ?? 'Unknown' }} · {{ $post->created_at->format('M d, Y') }}

{!! nl2br(e($post->content)) !!}
{{-- الكومنتات --}}
Comments ({{ $post->comments->count() }})
{{-- فورم إضافة كومنت --}} @auth
@csrf
@error('body')
{{ $message }}
@enderror
@else

Login to add a comment.

@endauth {{-- عرض الكومنتات --}} @forelse($post->comments as $comment)
{{ $comment->user->name ?? 'Unknown' }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->body }}

@empty

No comments yet. Be the first to comment!

@endforelse
{{-- سايدبار --}}
@endsection