@extends('layouts.default') @section('title') {{ $post->title }} @stop @section('top') @stop @section('content') @auth('blog')

Post Owner: {!! $post->owner !!}

Post Created: {!! html_ago($post->created_at) !!}

Last Updated: {!! html_ago($post->updated_at) !!}

Edit Post Delete Post

@endauth

{!! $post->summary !!}

Author: {!! $post->author !!}


{!! $post->content !!}

Comments

@auth('user')
{{ csrf_field() }}
@else

@if (Config::get('credentials.regallowed')) Please login or register to post a comment. @else Please login to post a comment. @endif

@endauth
@if (count($comments) == 0)

There are currently no comments.

@else @foreach ($comments as $comment) @include('posts.comment') @endforeach @endif
@stop @section('bottom') @auth('blog') @include('posts.delete') @endauth @auth('mod') @endauth @stop @section('js') @stop