{{ $row->title }}

@if(Session::has('message')) {!! Session::get('message') !!} @endif
{{ date("M j, Y " , strtotime($row->created)) }} {{ $row->comments }} comment(s)
@if(file_exists('./uploads/images/'.$row->image) && $row->image !='' )
@endif {!! SiteHelpers::renderHtml( str_replace('
',"",$row->content)) !!}
@if($access['is_edit'] ==1) Edit @endif @if($access['is_remove'] ==1)  {{ Lang::get('core.btn_remove') }} @endif

( {{ $row->comments }} ) Comment(s)

@foreach($comments as $com)
{{ date("F j, Y " , strtotime($com['created'])) }} | {{ $com['name'] }} says :
{!! SiteHelpers::BBCode2Html($com['comment']) !!}
@if(Session::get('gid') == 1 or $com['user_id'] == Session::get('uid')) @endif
@endforeach
@if(Auth::check()) {!! Form::open(array('url'=>'blog/savecomment/', 'parsley-validate'=>'','novalidate'=>' ', 'class'=>'form-vertical')) !!}
{!! Form::close() !!} @else
Please login to post comment
@endif
@include('blog.sidebar')