@php $stats = $this->getStats(); @endphp {{-- Stats Cards --}}
{{ $stats['completed'] }}
Completed
{{ $stats['generating'] }}
Generating
{{ $stats['failed'] }}
Failed
{{ $stats['missing'] }}
Missing
{{ $stats['total'] }}
Total PDFs
{{-- Livre Vert Section --}} @php $livreVertStats = $this->getLivreVertStats(); @endphp Livre Vert (Green Book) Single PDF book with all published posts grouped by categories @if(empty($livreVertStats))

No Livre Vert has been generated yet. Click the "Generate Livre Vert (FR)" button above to start.

@else
@foreach($livreVertStats as $lv) @endforeach
Locale Status File Size Downloads Last Generated Actions
{{ strtoupper($lv['locale']) }} {{ $lv['pdf_status'] }} {{ $lv['file_size'] ?: '-' }} {{ $lv['download_count'] }} {{ $lv['updated_at'] }} @if($lv['pdf_status'] === 'completed' && $lv['file_path']) Download @elseif($lv['pdf_status'] === 'failed') Error @else - @endif
@endif
{{-- Cours Biblique Section --}} @php $coursBibliqueStats = $this->getCoursBibliqueStats(); @endphp Cours Biblique (Bible Course) PDF book combining the Cours Biblique posts (Itinéraire spirituel + Le cours biblique) @if(empty($coursBibliqueStats))

No Cours Biblique has been generated yet. Click the "Generate Cours Biblique" button above to start.

@else
@foreach($coursBibliqueStats as $cb) @endforeach
Locale Status File Size Last Generated Actions
{{ strtoupper($cb['locale']) }} {{ $cb['pdf_status'] }} {{ $cb['file_size'] ?: '-' }} {{ $cb['updated_at'] }} @if($cb['pdf_status'] === 'completed' && $cb['file_path']) Download @elseif($cb['pdf_status'] === 'failed') Error @else - @endif
@endif
{{-- Table --}} {{ $this->table }}