@extends('backend.app') @section('title', 'Post Details') @section('content')

Post Information

Edit Back
Post ID {{ $post->id }}
User ID {{ $post->user_id }}
Description {!! $post->description !!}
Image @if ($post->image) Post Image @else No Image @endif
Comments @if($post->comments->count())
    @foreach($post->comments as $comment)
  • {{ $comment->sender_id }} {{ $comment->comment }} {{ $comment->created_at }}
  • @endforeach
@else No Comments @endif
Status {{ $post->status ?? 'N/A' }}
@endsection