@extends('layouts.user') @section('title', 'Company Uniform Inventory') @section('content')

Company Uniform Inventory

Manage and view uniform assignments across all employees.

Issued Uniforms Log

List of all uniforms currently assigned to employees

@forelse($allIssuedUniforms as $issued) @empty @endforelse
Employee Uniform Item Variant Details Quantity Issued Date Notes Actions
{{ substr($issued->employee->first_name, 0, 1) }}{{ substr($issued->employee->last_name, 0, 1) }}
{{ $issued->employee->first_name }} {{ $issued->employee->last_name }}
{{ $issued->employee->employee_id }}
{{ $issued->variant->uniform->name }}
@if($issued->variant->size) {{ $issued->variant->size }} @endif @if($issued->variant->color) {{ $issued->variant->color }} @endif
{{ $issued->quantity }} {{ $issued->issued_at->format('M d, Y') }} {{ $issued->notes ?? '-' }} Manage

No uniforms have been issued yet.

@foreach($inventory as $item) @endforeach
Uniform Name Type Variant Stock Quantity Status
{{ $item->uniform->name }} {{ $item->uniform->code ?? '-' }}
@if($item->size) {{ $item->size }} @endif @if($item->color) {{ $item->color }} @endif
{{ $item->stock_quantity }} @if($item->stock_quantity <= 5) Low Stock @endif
Active
@push('scripts') @endpush @endsection