@extends('layouts.app') @section('title', 'Kendaraan — Monitoring Alat Berat') @section('content')

Kendaraan (Alat Berat)

Gudang: {{ $warehouse?->name ?? '-' }}
Filter status: @php $qParam = $searchQ ?? request('q'); $opParam = request('operator'); $typeParam = request('type'); @endphp Semua | Aktif | Stand By | Rusak @if($filterOperator)
👤 Menampilkan Riwayat Equipment Saya ×
@endif
@forelse ($equipments as $eq) @empty @endforelse
Kode Nama Status Lokasi {{ $filterOperator ? 'Relasi Saya' : 'Operator' }}
{{ $eq->code }} {{ $eq->name ?? '-' }} @if ($eq->status === 'active') ● Aktif @elseif ($eq->status === 'standby') ○ Stand By @elseif ($eq->status === 'damaged') ⚠ Rusak @else {{ $eq->status }} @endif {{ $eq->location?->name ?? '-' }} @if($filterOperator) Pegang Saya @else @if ($eq->operator) {{ $eq->operator->name }} @else - @endif @endif
Belum ada data kendaraan.
{{ $equipments->links() }}
@endsection