{{ $pageTitle }} {{ $pageNote }}

@if(Session::has('message')) {{ Session::get('message') }} @endif

{{ $row->title }}

{{ $row->username }} {{ date("M j, Y " , strtotime($row->created)) }} {{ $row->comments }} comment(s)
{{ SiteHelpers::renderHtml( str_replace('
',"",$row->content)) }}

( {{ $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) @endif
@endforeach
@if(Auth::check()): {{ Form::open(array('url'=>'blog/savecomment/', 'parsley-validate'=>'','novalidate'=>' ')) }}


{{ Form::close() }} @else
Please login to post comment
@endif
@include('blog.sidebar')