{{-- mobile responsive --}} {{-- NAVBAR --}} {{-- HERO + SEARCH SECTION --}}

Candid Chronicles

Real stories. Honest news. Everyday lifestyle moments โ€“ all in one place.

{{-- MAIN CONTENT --}}
{{-- Flash message for success (new post, update, delete, etc) --}} @if(session('success')) @endif

Latest Posts

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

{{ $post->created_at->format('M d, Y') }} ยท ๐Ÿ‘ {{ $post->views ?? 0 }} views

{{ \Illuminate\Support\Str::limit(strip_tags($post->body), 120) }}

{{-- Video badge (if any video) --}} @if($post->video) ๐ŸŽฅ Includes video @endif
Read More
๐Ÿ‘ {{ $post->likes->count() ?? 0 }}  ยท  ๐Ÿ’ฌ {{ $post->comments->count() ?? 0 }}
๐Ÿ‘๏ธ {{ $post->views ?? 0 }}  ยท  ๐Ÿ‘ {{ $post->likes->count() ?? 0 }}  ยท  ๐Ÿ’ฌ {{ $post->comments->count() ?? 0 }}
{{-- Admin-only quick edit/delete actions --}} @if(auth('admin')->check())
โœ๏ธ Edit
@csrf @method('DELETE')
@endif
@endforeach
{{-- Pagination --}}
{{ $posts->links() }}
@else

No posts available yet.

@endif