@extends('layouts.app') @section('page-title', 'General Report: ' . $report->title) @section('page-heading', $report->title) @section('content')
County: {{ $report->county->name ?? 'N/A' }}
Category: {{ ucfirst($report->category) }}
Subcategory: {{ $report->subcategory ? ucfirst(str_replace(['_', '-'], ' ', $report->subcategory)) : 'N/A' }}
{{ $report->summary }}
{{ $report->recommendations }}
{{ $report->creator->name }}
{{ $report->created_at->format('M d, Y H:i') }}
{{ $report->approver->name ?? 'N/A' }}
{{ $report->approved_at?->format('M d, Y H:i') ?? 'N/A' }}
{{ $report->approval_comments }}