@extends('layouts.admin') @section('title', 'Uniform Inventory') @section('page_title', 'Complete Inventory') @section('content')
Detailed view of all uniform variants and stock levels.
| 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 EmptyNo items found in inventory. |
||||