@extends('super_admins.layouts.master') @section('title') View Post @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Post

Post Category

{{ $post->blog_category->name ? $post->blog_category->name : '--' }}

Name

{{ $post->name ? $post->name : '--' }}

Image

@if ($post->image) {{ $post->slug }} @else -- @endif

Slug

{{ $post->slug ? $post->slug : '--' }}

Status

{{ $post->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($post->created_at, 'd-m-Y') }}

Description

{!! $post->description !!}

@endsection @section('scripts') @endsection