{{ $board->title }}
{{ $posts->count() }} posts
Collaborative Board
Add Your Post
@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)
Attachment
@endif
@endforeach
@else
No posts yet
Be the first to share your thoughts!
@endif
Add New Post
@csrf
Title
Content
Attachment URL (Optional)
Cancel
Post