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

Inventaris Tools

Total Tools
{{ $stats['total'] }}
Available
{{ $stats['available'] }}
Siap digunakan
Sedang Dipakai
{{ $stats['in_use'] }}
Di teknisi
Maintenance
{{ $stats['maintenance'] }}
@if (session()->has('success')) @elseif (session()->has('error')) @endif
Total : {{ $tools->count() }} Tools
Reset
@php $no = 1; @endphp @foreach($tools as $tool) @endforeach
No. Kode Nama Tools Kategori Brand Status Kondisi Teknisi Aksi
{{ $no++ }} {{ $tool->code }} {{ $tool->name }} @if($tool->specifications)
{{ Str::limit($tool->specifications, 40) }} @endif
{{ $tool->category }} {{ $tool->brand ?? '-' }} {!! $tool->status_badge !!} {!! $tool->condition_badge !!} @if($tool->teknisi) {{ $tool->teknisi->name }}
Sejak: {{ $tool->assigned_at ? $tool->assigned_at->format('d/m/Y') : '-' }} @else - @endif
@if($tool->canBeAssigned()) @endif @if($tool->canBeReturned()) @endif @if(auth()->user()->role === 'admin')
@csrf @method('DELETE')
@endif
@endsection