@extends('layouts.examiner') @section('title', 'Recording — ' . $candidate->reg_no) @section('content')

{{ $candidate->reg_no }}

{{ $candidate->full_name }} @if($candidate->department) — {{ $candidate->department->name }} @endif

All Recordings
@csrf @method('DELETE')
{{-- ── Video player ──────────────────────────────────── --}}
Playing: Full recording — {{ $chunks->count() }} segment(s), {{ number_format($chunks->sum('size') / 1048576, 1) }} MB
{{-- ── Chunk list ────────────────────────────────────── --}}
Segments {{ $chunks->count() }}
    @foreach($chunks as $chunk)
  • Segment {{ $chunk->chunk_index + 1 }}
    {{ number_format($chunk->size / 1024, 0) }} KB
    {{ $chunk->created_at->format('H:i:s') }}
  • @endforeach
@endsection @push('scripts') @endpush