@extends('layouts.examiner') @section('title', 'Exam Recordings') @section('content')

Exam Recordings

@if(!config('cbt.recording_enabled')) Recording is currently disabled @else Recording is ENABLED @endif
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Recorded Sessions
{{ $candidates->count() }}
@forelse($candidates as $i => $rec) @php $cand = $rec->candidate; @endphp @empty @endforelse
# Reg No Name Department Chunks Total Size Recorded At Actions
{{ $i + 1 }} {{ $rec->reg_no }} {{ $cand ? $cand->full_name : '—' }} {{ $cand && $cand->department ? $cand->department->name : '—' }} {{ $rec->chunk_count }} {{ number_format($rec->total_size / 1048576, 1) }} MB {{ $rec->started_at ? \Carbon\Carbon::parse($rec->started_at)->format('d M Y H:i') : '—' }}
@if($cand)
@csrf @method('DELETE')
@endif
No recordings found.
@endsection