@extends('admin.admin_dashboard') @section('admin')
M&E reports Report #{{ $report->id }} @can('approve', $report)
@csrf
@endcan @can('update', $report) Edit @endcan
@foreach([ 'Implementation narrative' => $report->implementation_narrative, 'Expected outputs' => $report->expected_outputs, 'Actual outputs' => $report->actual_outputs, 'Expected outcomes' => $report->expected_outcomes, 'Actual outcomes' => $report->actual_outcomes, 'Beneficiaries' => $report->beneficiaries, 'Performance indicators' => $report->performance_indicators, 'Challenges' => $report->challenges, 'Lessons learned' => $report->lessons_learned, 'Recommendations' => $report->recommendations, ] as $label => $value) @if($value)

{!! nl2br(e($value)) !!}

@endif @endforeach

Activity: {{ $report->activity->title ?? 'โ€”' }}

Requisition: {{ $report->requisition->reference ?? 'โ€”' }}

By: {{ $report->submitter->name ?? 'โ€”' }}

@if($report->approver)

Approved by: {{ $report->approver->name }} ยท {{ $report->approved_at?->format('d M Y H:i') }}

@endif @if($report->review_comments)

Review: {{ $report->review_comments }}

@endif
@if($report->attachments->isNotEmpty()) @endif
@endsection