@extends('layouts.user') @section('title', 'Uniforms Inventory') @section('content')
Available uniforms and current stock levels.
| Uniform Type | Code | Variant (Size / Color) | Available Stock |
|---|---|---|---|
|
{{ $item->uniform->name }}
@if($item->uniform->description)
{{ Str::limit($item->uniform->description, 50) }}
@endif
|
@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)
Standard
@endif
|
{{ $item->stock_quantity }} |
| No active uniform inventory found. | |||