@extends('layouts.app')
@section('title', $employee->name.' · UniformFlow')
@section('page-heading', 'Employee record')
@section('content')
{{ $employee->designation ?: 'Employee' }} · {{ $employee->department }}{{ $employee->name }}
| Issued | Uniform | Size | Qty | Status | Notes |
|---|---|---|---|---|---|
| {{ $issue->issued_at->format('d M Y') }} | {{ $issue->variant->item->name }} | {{ $issue->variant->size }} | {{ $issue->quantity }} | {{ str_replace('_',' ', ucfirst($issue->status)) }} | {{ $issue->notes ?: '—' }} |
| No uniforms have been issued. | |||||