@extends('front.layout.app') @section('main_content')

{{ $post_detail->post_title }}

@php $ts = strtotime($post_detail->created_at); $created_date = date('d F, Y',$ts); @endphp {{ $created_date }}
{{ $post_detail->visitors }}
{!! $post_detail->post_detail !!}

{{ TAGS }}

@foreach($tag_data as $item) {{ $item->tag_name }} @endforeach
@if($post_detail->is_share == 1) @endif @if($post_detail->is_comment == 1)

{{ COMMENT }}

{!! $global_setting_data->disqus_code !!}
@endif
@endsection