@extends('layouts.app') @push('pg_btn') @can('update-post') Edit Post @endcan @endpush @section('content')
Title
{{ $post->post_title }}
@if ($post->featured_image) @endif
Category
{{ $post->category->category_name }}
Created By
{{ $post->user->name }}
Body
{!! $post->post_body !!}
Status
{{ $post->status ? 'Active' : 'Disable'}}
@endsection