@extends('admin.layouts.app') @section('section')
{{--

{{ $post->title }}

--}} @if($post->post_image) Post Image @endif @if($post->post_video) @endif
{{--

User: {{ $post->user ? $post->user->name : 'Unknown User' }}

--}} @if($post->category)

Category: {{ $post->category ? $post->category->name : 'Uncategorized' }}

@endif @if($post->post_tags)

Tags: {{ $post->post_tags ?? 'no-tages' }}

@endif

Content:{{ $post->post_content ?? '-' }}

@endsection