@extends('admin.layouts.app') @section('content')

Dashboard

Total Articles
{{ $stats['articles']['total'] }}
{{ $stats['articles']['published'] }} Published · {{ $stats['articles']['draft'] }} Draft
Total News
{{ $stats['news']['total'] }}
{{ $stats['news']['published'] }} Published · {{ $stats['news']['draft'] }} Draft
Total Programs
{{ $stats['programs']['total'] }}
{{ $stats['programs']['published'] }} Published · {{ $stats['programs']['draft'] }} Draft
Total Activities
{{ $stats['activities']['total'] }}
{{ $stats['activities']['active'] }} Active
Total Users
{{ $stats['users']['total'] }}
{{ $stats['users']['admin'] }} Admins · {{ $stats['users']['alumni'] }} Alumni

Recent Articles

    @foreach ($recentArticles as $article)
  • {{ $article->title }}

    By {{ $article->author->name }} in {{ $article->category->name }}

    {{ ucfirst($article->status) }}
  • @endforeach

Recent News

    @foreach ($recentNews as $news)
  • {{ $news->title }}

    By {{ $news->author->name }} in {{ $news->category->name }}

    {{ ucfirst($news->status) }}
  • @endforeach

Upcoming Activities

    @foreach ($upcomingActivities as $activity)
  • {{ $activity->name }}

    {{ $activity->description }}

    @foreach ($activity->batches as $batch)
    {{ $batch->tanggal_mulai_kegiatan->format('d M Y') }} - {{ $batch->tanggal_selesai_kegiatan->format('d M Y') }}
    @endforeach
  • @endforeach
@endsection