{{ $posts->count() }}

Total Posts

{{ $posts->pluck('author_name')->unique()->count() }}

Contributors

{{ $posts->where('created_at', '>=', now()->subDays(7))->count() }}

This Week

{{ $board->is_public ? 'Public' : 'Private' }}

Visibility

@if($board->description)

Board Description

{{ $board->description }}

@endif

Collaborative Board

@if($board->board_type === 'structured' && $sections->count() > 0)
@foreach($sections as $section)

{{ $section->name }}

{{ $posts->where('board_section_id', $section->id)->count() }} posts
@foreach($posts->where('board_section_id', $section->id) as $post)
{{ substr($post->author_name ?? 'A', 0, 1) }}

{{ $post->author_name ?? 'Anonymous' }}

{{ $post->created_at->diffForHumans() }}

{{ $post->content }}

@if($post->url) @endif
@endforeach
@endforeach
@else @if($posts->count() > 0) @foreach($posts as $index => $post)
{{ substr($post->author_name ?? 'A', 0, 1) }}

{{ $post->author_name ?? 'Anonymous' }}

{{ $post->created_at->diffForHumans() }}

{{ $post->content }}

@if($post->url) @endif
@endforeach @else

No posts yet

Be the first to share something on this board!

@endif @endif