@extends('layouts.app') @section('title', 'Control Measure: ' . $controlMeasure->title) @section('content')
{{ $controlMeasure->description }}
{{ $controlMeasure->getControlTypeLabel() }}
{{ ucfirst(str_replace('_', ' ', $controlMeasure->effectiveness_level ?? 'N/A')) }}
{{ $controlMeasure->target_completion_date->format('M d, Y') }}
{{ $controlMeasure->actual_completion_date->format('M d, Y') }}
${{ number_format($controlMeasure->estimated_cost, 2) }}
${{ number_format($controlMeasure->actual_cost, 2) }}
{{ $controlMeasure->resources_required }}
{{ $controlMeasure->verification_date->format('M d, Y') }}
{{ $controlMeasure->verifiedBy->name }}
{{ $controlMeasure->verification_method }}
{{ $controlMeasure->is_effective ? 'Effective' : 'Not Effective' }}
{{ $controlMeasure->verification_results }}
{{ $controlMeasure->effectiveness_notes }}
{{ ucfirst(str_replace('_', ' ', $controlMeasure->maintenance_frequency)) }}
{{ $controlMeasure->last_maintenance_date->format('M d, Y') }}
{{ $controlMeasure->next_maintenance_date->format('M d, Y') }}
{{ $controlMeasure->maintenance_requirements }}
{{ $controlMeasure->assignedTo->name }}
{{ $controlMeasure->responsibleParty->name }}
{{ $controlMeasure->created_at->format('M d, Y H:i') }}