{{ $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' => '' ]) !!}
@endif
@if(get_buzzy_config('ShowUpdateDate') !== 'no' && $post->updated_at->getTimestamp() > $post->published_at->getTimestamp())
— {!! trans('index.updatedon', ['time' => '' ]) !!}
@endif
@if(isset($show_views) && get_buzzy_config('ShowViewCount') !== 'no')