@extends('layouts.app') @section('title', 'Admin Dashboard') @section('page_header', 'Dashboard Overview') @section('content')
Humanity Welfare Society (NGO)

Welcome back, {{ Auth::user()->name }} 👋

Manage intern student records, generate QR-verified certificates with custom college logos, and inspect live authenticity verification logs.

Issue New Certificate
Total Certificates

{{ number_format($totalCertificates) }}

🟢 {{ $activeCertificates }} Active 🔴 {{ $revokedCertificates }} Revoked
Intern Students

{{ number_format($totalStudents) }}

Registered student interns
Partner Colleges

{{ number_format($totalColleges) }}

Universities & Institutions
Courses / Domains

{{ number_format($totalCourses) }}

Available Internship Programs

Recently Issued Certificates

Latest generated certificates with status indicators

View All
@forelse($recentCertificates as $cert) @empty @endforelse
Student Name Certificate ID Course Email Status Action
{{ $cert->student->full_name }} {{ $cert->student->college->name ?? 'N/A' }} {{ $cert->certificate_uuid }} {{ $cert->course->title ?? 'N/A' }} @if($cert->email_sent) Sent @else Not Sent @endif @if($cert->status === 'active') 🟢 Active @else 🔴 Revoked @endif
No certificates generated yet.

Top Partnered Colleges

@foreach($topColleges as $col)
{{ strtoupper(substr($col->name, 0, 2)) }}

{{ $col->name }}

{{ $col->city_state ?? 'India' }}
{{ $col->students_count }} Students
@endforeach

Recent Security Activity

@foreach($recentLogs as $log)

{{ $log->action }}

{{ $log->details }}

{{ $log->created_at->diffForHumans() }}
@endforeach
@endsection