@extends('backend.app') @section('title', 'Post Details') @section('content')
| Post ID | {{ $post->id }} |
|---|---|
| User ID | {{ $post->user_id }} |
| Description | {!! $post->description !!} |
| Image |
@if ($post->image)
|
| Comments |
@if($post->comments->count())
|
| Status | {{ $post->status ?? 'N/A' }} |