{{ $task->program->program_name ?? 'N/A' }}
Dicetak pada: {{ $generatedDate }}
| No | Nama Tugas | Penanggung Jawab | Status | Mulai | Selesai |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $subTask->task_name }} | {{ $subTask->assignedUser->name ?? '-' }} | {{ $statusLabels[$subTask->status] ?? $subTask->status }} | {{ $subTask->start_date ? $subTask->start_date->format('d/m/Y') : '-' }} | {{ $subTask->end_date ? $subTask->end_date->format('d/m/Y') : '-' }} |
| No | Nama Target | Target | Tercapai | Satuan | Tanggal Target | Status |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $target->target_name }} | {{ number_format($target->target_value, 0, ',', '.') }} | {{ number_format($target->achieved_value ?? 0, 0, ',', '.') }} | {{ $target->target_unit ?? '-' }} | {{ $target->target_date ? $target->target_date->format('d/m/Y') : '-' }} | @if($target->achieved_value >= $target->target_value) ✓ @else - @endif |
| No | Tanggal | Kategori | Deskripsi | Jumlah | Dibuat Oleh |
|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $budget->transaction_date ? $budget->transaction_date->format('d/m/Y') : '-' }} | {{ $budget->category ?? '-' }} | {{ $budget->description }} | Rp {{ number_format($budget->amount, 0, ',', '.') }} | {{ $budget->creator->name ?? '-' }} |
| TOTAL | Rp {{ number_format($totalBudget, 0, ',', '.') }} | ||||
| No | Tanggal | Judul | Deskripsi | Progress | Dibuat Oleh | Status |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $logbook->activity_date ? $logbook->activity_date->format('d/m/Y') : '-' }} | {{ $logbook->title }} | {{ Str::limit($logbook->description, 100) }} | {{ $logbook->progress_value ?? '-' }}% | {{ $logbook->creator->name ?? '-' }} | @if($logbook->verified_at) ✓ Verified @else Pending @endif |
| No | Nama File | Tipe | Ukuran | Diunggah Oleh |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $attachment->file_name }} | {{ $attachment->file_type ?? '-' }} | {{ number_format($attachment->file_size / 1024, 2) }} KB | {{ $attachment->uploader->name ?? '-' }} |