{{-- NAVBAR (copied from index.blade.php) --}} {{-- HEADER --}}

{{ ucfirst($category) }} Posts

Browsing all posts in the {{ ucfirst($category) }} category.

@if(session('success'))
{{ session('success') }}
@endif @if($posts->count())
@foreach($posts as $post)
@if($post->image) Post image @endif
{{ ucfirst($post->category ?? 'general') }}
{{ $post->title }}

{{ Str::limit($post->body, 120) }}

@if($post->video) ๐ŸŽฅ Includes video @endif
Read More
๐Ÿ‘ {{ $post->likes->count() ?? 0 }}  ยท  ๐Ÿ’ฌ {{ $post->comments->count() ?? 0 }}  ยท  ๐Ÿ‘๏ธ {{ $post->views ?? 0 }}
@endforeach
{{ $posts->links() }}
@else

No posts in this category yet.

@endif