@extends('layouts.app') @section('title', 'Control Measure: ' . $controlMeasure->title) @section('content')
Back

{{ $controlMeasure->title }}

{{ $controlMeasure->reference_number }}

{{ ucfirst(str_replace('_', ' ', $controlMeasure->status)) }} {{ ucfirst($controlMeasure->priority) }} Priority

Description

{{ $controlMeasure->description }}

Control Details

{{ $controlMeasure->getControlTypeLabel() }}

{{ ucfirst(str_replace('_', ' ', $controlMeasure->effectiveness_level ?? 'N/A')) }}

@if($controlMeasure->target_completion_date)

{{ $controlMeasure->target_completion_date->format('M d, Y') }}

@endif @if($controlMeasure->actual_completion_date)

{{ $controlMeasure->actual_completion_date->format('M d, Y') }}

@endif @if($controlMeasure->estimated_cost)

${{ number_format($controlMeasure->estimated_cost, 2) }}

@endif @if($controlMeasure->actual_cost)

${{ number_format($controlMeasure->actual_cost, 2) }}

@endif
@if($controlMeasure->resources_required)

{{ $controlMeasure->resources_required }}

@endif
@if($controlMeasure->verification_date || $controlMeasure->verified_by)

Verification

@if($controlMeasure->verification_date)

{{ $controlMeasure->verification_date->format('M d, Y') }}

@endif @if($controlMeasure->verifiedBy)

{{ $controlMeasure->verifiedBy->name }}

@endif @if($controlMeasure->verification_method)

{{ $controlMeasure->verification_method }}

@endif @if($controlMeasure->is_effective !== null)

{{ $controlMeasure->is_effective ? 'Effective' : 'Not Effective' }}

@endif
@if($controlMeasure->verification_results)

{{ $controlMeasure->verification_results }}

@endif @if($controlMeasure->effectiveness_notes)

{{ $controlMeasure->effectiveness_notes }}

@endif
@endif @if($controlMeasure->maintenance_frequency || $controlMeasure->last_maintenance_date)

Maintenance

@if($controlMeasure->maintenance_frequency)

{{ ucfirst(str_replace('_', ' ', $controlMeasure->maintenance_frequency)) }}

@endif @if($controlMeasure->last_maintenance_date)

{{ $controlMeasure->last_maintenance_date->format('M d, Y') }}

@endif @if($controlMeasure->next_maintenance_date)

{{ $controlMeasure->next_maintenance_date->format('M d, Y') }}

@endif
@if($controlMeasure->maintenance_requirements)

{{ $controlMeasure->maintenance_requirements }}

@endif
@endif

Assignment

@if($controlMeasure->assignedTo)

{{ $controlMeasure->assignedTo->name }}

@endif @if($controlMeasure->responsibleParty)

{{ $controlMeasure->responsibleParty->name }}

@endif

{{ $controlMeasure->created_at->format('M d, Y H:i') }}

Source

@if($controlMeasure->riskAssessment) @endif @if($controlMeasure->hazard) @endif @if($controlMeasure->jsa) @endif @if($controlMeasure->incident) @endif
@if($controlMeasure->relatedCAPA || $controlMeasure->relatedTrainingNeed || $controlMeasure->relatedTrainingPlan)

Related Items

@if($controlMeasure->relatedCAPA) @endif @if($controlMeasure->relatedTrainingNeed) @endif @if($controlMeasure->relatedTrainingPlan) @endif
@endif
@endsection