Connect Posts

@include('search.partials.tabs', ['activeTab' => 'posts', 'query' => $query])

Filters

{{ number_format($posts->total()) }} posts found

@if($posts->count() > 0)
@foreach($posts as $post)
{{ strtoupper(substr($post->nurse->user->name, 0, 1)) }}

{{ $post->nurse->user->name }}

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

{{ $post->body }}

{{ $post->likes_count ?? 0 }} likes {{ $post->comments_count ?? 0 }} comments {{ $post->reposts_count ?? 0 }} reposts
@endforeach
{{ $posts->appends(request()->except('page'))->links() }}
@else

No posts found.

@endif