{{ $nurse->name }}
{{ $profile?->primary_specialty ?? 'User' }} · {{ $profile?->country ?? 'Location n/a' }} · {{ $profile?->experience_years ? $profile->experience_years . ' yrs' : 'Experience n/a' }}
@if($profile?->headline){{ $profile->headline }}
@endif
{{ $stats['connections'] }} Connections
{{ $stats['posts'] }} Posts
{{ $stats['countries'] }} Countries in Network
{{ $stats['conversations'] }} Conversations
@if($tab === 'replies')
@forelse($items as $reply)
@endif
@empty
Reply to {{ $reply->post->author->name ?? 'Unknown' }}
{{ $reply->body }}
@if($reply->post){{ $reply->post->author->name ?? 'Unknown' }}
{{ $reply->post->body }}
You haven’t replied to any posts yet.
@endforelse
{{ $items->links() }}
@elseif($tab === 'liked')
@forelse($items as $post)
@include('nurse.connect.partials.post-card', ['post' => $post])
@empty
No liked posts yet.
@endforelse
{{ $items->links() }}
@else
@forelse($items as $post)
@include('nurse.connect.partials.post-card', ['post' => $post])
@empty
You haven’t posted yet. Share your first experience or question to get started.
@endforelse
{{ $items->links() }}
@endif