@php $pubCats = [ 'STRATEGIC' => 'Strategic Documents', 'TECHNICAL' => 'Technical Documents', 'REPORTS' => 'Reports', 'COMMS' => 'National Communications', ]; $downloads = \App\Models\Backend\ContentDownload::where('download_status','ACTIVE') ->where('download_language', 'en') ->where('download_source', 'REDD+ Malaysia') ->orderBy('download_date', 'desc') ->get(); $grouped = $downloads->groupBy('download_category'); @endphp

Publications, Documents & Reports

Access official documents, reports and publications related to REDD+ Malaysia.

@if($downloads->count()) @foreach($pubCats as $code => $label) @php $items = $grouped->get($code, collect()); @endphp @if($items->count())

{{ $label }}

@endif @endforeach @else

No publications yet

Documents will appear here once available.

@endif