@extends('layouts.admin') @section('title', 'Uniform Inventory') @section('page_title', 'Complete Inventory') @section('content')

Complete Inventory

Detailed view of all uniform variants and stock levels.

View by Type Export PDF @can('create uniform') Add Inventory @endcan
@forelse($inventory as $item) @empty @endforelse
Uniform Code Variant (Size / Color) Stock Level Status
{{ $item->uniform->name }}
@if($item->uniform->code) {{ $item->uniform->code }} @else - @endif
@if($item->color) {{ $item->color }} @endif @if($item->size && $item->color) / @endif @if($item->size) {{ $item->size }} @endif @if(!$item->size && !$item->color) Base Item @endif
{{ $item->stock_quantity }} @if($item->active) Active @else Inactive @endif

Inventory Empty

No items found in inventory.

@endsection