{{ __('Author') }}: {{ $author->name }}

{!! clean($author->description) !!}

{{ __('Posts by :name', ['name' => $author->name]) }}:

@if ($posts->count() > 0) @foreach ($posts as $post)
{{ $post->name }}

{{ $post->name }}

{{ $post->created_at->format('M d, Y') }}{{ $post->author->name }} - {{ __('Categories') }}: @foreach($post->categories as $category) {{ $category->name }} @if (!$loop->last) , @endif @endforeach

{{ $post->description }}

@endforeach
{!! $posts->withQueryString()->links() !!}
@else

{{ __('No posts found!') }}

@endif