@extends('layouts.app') @section('content')

📄 Report Details

Center: {{ $report->user->center->name ?? 'Unknown' }}

{{ $report->title }}

Submitted by: {{ $report->user->name ?? 'Unknown' }} ({{ ucfirst($report->user->role ?? '-') }})

Type: {{ ucfirst($report->type ?? '-') }}

Status:

{{ $report->status }}

Date Submitted: {{ $report->created_at->format('d M, Y') }}


📝 Description / Notes

{{ $report->description ?? 'No additional notes.' }}

@if($report->attachment)
📎 Attachment
Download File
@endif
@endsection