@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')
Total Items
{{ $stats['total'] }}
Active
{{ $stats['active'] }}
Low Stock
{{ $stats['low_stock'] }}
Need Reorder
{{ $stats['needs_reorder'] }}
| 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 | ||||||