@extends('layouts.app') @section('title', 'Machine Health Monitoring') @section('content')
Predictive Maintenance & Asset Reliability Analytics
| Machine Asset | Line / Zone | Health Score | Failure Prob. | Estimated Window | Recommendation |
|---|---|---|---|---|---|
|
{{ $hs->machine->name }}
{{ $hs->machine->model ?? 'Standard Model' }}
|
{{ $hs->machine->productionLine->name }} |
|
{{ $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. | |||||