@extends('layouts.main') @section('content')

Detail Tools

@if (session()->has('success')) @elseif (session()->has('error')) @endif
Informasi Tools
Edit @if($tool->canBeAssigned()) @endif @if($tool->canBeReturned()) @endif
Kode Tools : {{ $tool->code }}
Nama Tools : {{ $tool->name }}
Kategori : {{ $tool->category }}
Brand/Merk : {{ $tool->brand ?? '-' }}
Status : {!! $tool->status_badge !!}
Kondisi : {!! $tool->condition_badge !!}
Spesifikasi : {{ $tool->specifications ?? '-' }}
Catatan : {{ $tool->notes ?? '-' }}
@if($tool->teknisi || $tool->assigned_at || $tool->returned_at)
Riwayat Assignment
@if($tool->teknisi) @endif @if($tool->assigned_at) @endif @if($tool->assignedBy) @endif @if($tool->returned_at) @endif @if($tool->returnedTo) @endif
Teknisi Saat Ini : {{ $tool->teknisi->name }}
Tanggal Dipinjam : {{ $tool->assigned_at->format('d M Y, H:i') }} WIB
Dipinjamkan Oleh : {{ $tool->assignedBy->name }}
Tanggal Dikembalikan : {{ $tool->returned_at->format('d M Y, H:i') }} WIB
Diterima Oleh : {{ $tool->returnedTo->name }}
@endif
@if($tool->photo)
Foto Tools
{{ $tool->name }}
@else

Tidak ada foto

@endif
Informasi Sistem
Dibuat : {{ $tool->created_at->format('d M Y, H:i') }}
Terakhir Update : {{ $tool->updated_at->format('d M Y, H:i') }}
@endsection