ESMT

{{ $board->title }}

{{ $posts->count() }} posts

Collaborative Board
@if($posts->count() > 0)
@foreach($posts as $post)
{{ substr($post->user->name ?? 'A', 0, 1) }}
{{ $post->user->name ?? 'Anonymous' }}
{{ $post->created_at->format('M j, g:i A') }}

{{ $post->title }}

{{ $post->content }}

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

No posts yet

Be the first to share your thoughts!

@endif