@extends('admin.layouts.app') @section('content')
{!! $blog->name !!}
{!! $blog->categories_name !!}
{!! $blog->authors_name !!}
{!! $blog->is_author_show ? "Yes" : "No" !!}
{!! $blog->publish_at ? convertUtcToLocal($blog->publish_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) : "" !!}
@if($blog->is_active) Active @else Inactive @endif
{!! $blog->short_description !!}
{!! $blog->description !!}
{!! convertUtcToLocal($blog->created_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$blog->createdBy->name !!}
@if($blog->updated_by != "")
{!! convertUtcToLocal($blog->updated_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$blog->updatedBy->name !!}
@endif
@endsection