@extends('layouts.admin') @section('header', 'Dashboard') @section('content')

Posts / Blogs

{{ $stats['total_posts'] }}

Podcast Episodes

{{ $stats['total_episodes'] }}

Guest Applicants

{{ $stats['total_applicants'] }}

Event Registers

{{ $stats['total_event_registrations'] }}

Contact Msgs

{{ $stats['total_contact_messages'] }}

Recent Posts

View All
@forelse($recentPosts as $post)

{{ $post->title }}

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

{{ $post->is_published ? 'Published' : 'Draft' }}
@empty
No posts found. Create one
@endforelse

Recent Episodes

View All
@forelse($recentEpisodes as $episode)

Ep {{ $episode->episode_number }}: {{ $episode->title }}

{{ $episode->created_at->diffForHumans() }}

{{ $episode->is_published ? 'Published' : 'Draft' }}
@empty
No episodes found. Create one
@endforelse
@endsection