@extends('layouts.app') @section('title', 'Tester Dashboard') @section('page-title', 'Dashboard') @section('content')
{{ $stats['total_exams'] }}
Total Exams
{{ $stats['active_exams'] }}
Active Exams
{{ $stats['total_candidates'] }}
Total Candidates
{{ $stats['completed_attempts'] }}
Completed Attempts
Recent Exams
New Exam
@forelse($recentExams as $exam) @empty @endforelse
Exam Status Candidates Actions
{{ Str::limit($exam->title, 35) }}
{{ $exam->duration_minutes }} min ยท {{ $exam->total_marks }} marks
{{ $exam->status_badge['label'] }} {{ $exam->registrations->count() }} Results
No exams yet. Create your first exam
{{ $stats['wallet']?->student_credits ?? 0 }}
Student Credits Available
Top Up Credits
@endsection