@extends('layouts.app') @section('title', 'Machine Health Monitoring') @section('content')

Machine Health Monitoring

Predictive Maintenance & Asset Reliability Analytics

@csrf
@forelse($machines as $hs) @empty @endforelse
Machine Asset Line / Zone Health Score Failure Prob. Estimated Window Recommendation
{{ $hs->machine->name }}
{{ $hs->machine->model ?? 'Standard Model' }}
{{ $hs->machine->productionLine->name }}
{{ $hs->health_score }}%
{{ $hs->failure_probability }}% @if($hs->estimated_failure_window_start)
{{ $hs->estimated_failure_window_start->format('M d') }} - {{ $hs->estimated_failure_window_end->format('M d') }}
Analysis based on runtime
@else No immediate risk @endif
{{ $hs->recommendation }}
@if($hs->health_score < 70) Schedule Now @endif
Initialize data to see machine health predictions.
@if($machines->hasPages()) @endif
@endsection