@extends('layouts.app') @section('title', 'Detail Cek Alat') @section('page-title', 'Detail Cek Alat') @section('content')
Kembali ke Daftar
Informasi Cek Alat
Montir {{ $cekAlat->montir->name }}
Nama Alat {{ $cekAlat->nama_alat }}
Tanggal Cek {{ $cekAlat->created_at->format('d M Y H:i') }}
Kondisi @if($cekAlat->kondisi === 'baik') Baik @else Rusak @endif
Catatan {{ $cekAlat->catatan ?: '-' }}
Media Bukti
@php $photos = is_string($cekAlat->foto) ? json_decode($cekAlat->foto, true) : $cekAlat->foto; @endphp @if(!empty($photos))
@foreach($photos as $photo) @endforeach
@else

Tidak ada foto

@endif @if($cekAlat->video)
Video:
@endif
@endsection