@extends('layouts.app') @section('title', 'Servis Check — ' . $equipment->code) @section('content')
{{-- Header --}}

🔧 Servis Check

{{ $equipment->code }} — {{ $equipment->name }}

{{-- Info Band --}}

Status Alat

{{ $equipment->status === 'damaged' ? 'Rusak' : ($equipment->status === 'active' ? 'Aktif' : 'Stand By') }}

Lokasi

{{ $equipment->location?->name ?? '—' }}

Operator

{{ $equipment->operator?->name ?? '—' }}

{{-- Active Repair Banner --}} @if($activeRepair)
🛠️
Ada perbaikan aktif — Status: {{ ucfirst(str_replace('_', ' ', $activeRepair->status)) }} @if($activeRepair->mechanic_notes)
Keluhan: {{ $activeRepair->mechanic_notes }} @endif
@else
✅ Tidak ada perbaikan aktif untuk alat ini.
@endif {{-- Flash messages --}} @if(session('success'))
{{ session('success') }}
@endif
@csrf {{-- Action Selection --}}

🎯 Pilih Aksi Servis

{{-- Checklist Items --}}

📋 Checklist Bagian yang Diservis

@foreach($checklistItems as $key => $label)
{{ $label }}
@endforeach
{{-- Catatan --}}
{{-- Submit --}}
@endsection