@if(isset($post->user->username_slug))
@if(isset($post->user->facebook)) @endif @if(isset($post->user->twitter)) @endif @if(get_buzzy_config('ShowAuthor') !== 'no')
{{ $post->user->username }}
{{ $post->user->username}} @if(get_buzzy_config('ShowAuthorBadge') !== 'no') @if($post->user->usertype == 'Admin')
{{ trans('updates.usertypeadmin') }}
@elseif($post->user->usertype == 'Staff')
{{ trans('updates.usertypestaff') }}
@elseif($post->user->usertype == 'banned')
{{ trans('updates.usertypebanned') }}
@endif @endif
@if(get_buzzy_config('ShowPublishDate') !== 'no') {!! trans('index.postedon', ['time' => ''.$post->published_at->diffForHumans() .'' ]) !!} @endif @if(get_buzzy_config('ShowUpdateDate') !== 'no' && $post->updated_at->getTimestamp() > $post->published_at->getTimestamp()) — {!! trans('index.updatedon', ['time' => ''.$post->updated_at->diffForHumans() .'' ]) !!} @endif
@if(isset($show_views) && get_buzzy_config('ShowViewCount') !== 'no')
{{ $post->all_time_stats ? number_format($post->all_time_stats) : "0" }}
{{ trans('updates.views') }}
@endif @endif @endif