@extends('layouts.backend.master') @section('title','Post') @push('css') @endpush @section('content')
BACK @if($post->is_approved == false) @else @endif

{{ $post->title }} Posted By {{ $post->user->name }} on {{ $post->created_at->toFormattedDateString() }}

{!! $post->body !!}

Categoryies

@foreach($post->categories as $category) {{ $category->name }} @endforeach

Tags

@foreach($post->tags as $tag) {{ $tag->name }} @endforeach

Featured Image

@endsection @push('js') @endpush