@if(!Auth::check())
{!! Lang::get('core.blog_hint') !!}
@endif

{!! $row->title !!}

  • {!! $row->username !!}
  • {!! date("M j, Y " , strtotime($row->created)) !!}
  • {!! $row->comments !!} {!! Lang::get('core.commentt') !!}
{!! SiteHelpers::renderHtml( str_replace('
',"",$row->content)) !!}

( {!! $row->comments !!} ) {!! Lang::get('core.commentt') !!}

@foreach($comments as $com)
{!! SiteHelpers::BBCode2Html($com['comment']) !!}

{!! date("F j, Y " , strtotime($com['created'])) !!} | {!! $com['name'] !!}

@if(Session::get('uid') == $com['user_id']) @endif
@endforeach
@if(Auth::check()) {!! Form::open(array('url'=>'blogs/savecomment/', 'parsley-validate'=>'','novalidate'=>' ')) !!}
{!! Form::close() !!} @else @endif
@include('blog.sidebar')