{{-- NAVBAR (same as index.blade.php) --}} {{-- HEADER --}}

Archive

@if($month)

Posts from {{ \Carbon\Carbon::create($year, $month, 1)->format('F Y') }}

@else

Posts from {{ $year }}

@endif
@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 found for this archive period.

@endif