{{-- resources/views/admin/crm/batches/show.blade.php --}} @extends('layouts.app') @push('styles') @endpush @section('title', 'Batch Details - ' . $batch->batch_id) @section('content')
{{ $batch->batch_id }}
@if($batch->jobRole) {{ $batch->jobRole->name }} @endif @if($batch->sector) - {{ $batch->sector->name }} @endif
Est: {{ $batch->estimated_date_of_assessment ? $batch->estimated_date_of_assessment->format('d-m-Y') : '--' }}
Total Candidates
{{ $statistics['total_candidates'] ?? 0 }}
Assessed
{{ $statistics['assessed'] ?? 0 }}
Certified
{{ $statistics['certified'] ?? 0 }}
Completion Rate
{{ $statistics['completion_rate'] ?? 0 }}%