@extends('layouts.app') @section('title', 'PPE Inventory') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('dashboard'), 'icon' => 'fa-home'], ['label' => 'PPE Management', 'url' => route('ppe.dashboard'), 'icon' => 'fa-hard-hat'], ['label' => 'Inventory', 'url' => route('ppe.items.index'), 'active' => true] ]; @endphp @section('content')

PPE Inventory

Manage Personal Protective Equipment items

Total Items

{{ $stats['total'] }}

Active

{{ $stats['active'] }}

Low Stock

{{ $stats['low_stock'] }}

Need Reorder

{{ $stats['needs_reorder'] }}

Filters

@forelse($items as $item) @empty @endforelse
Item Category Stock Supplier Status Actions
{{ $item->name }}
{{ $item->reference_number }}
{{ $item->category }}
{{ $item->available_quantity }} / {{ $item->total_quantity }} available
@if($item->isLowStock())
Low Stock!
@endif
{{ $item->supplier->name ?? 'N/A' }} {{ ucfirst($item->status) }} View Edit
No items found
{{ $items->appends(request()->query())->links() }}
@push('scripts') @endpush @endsection