@extends('layouts.app') @section('title', 'Exit handovers · UniformFlow') @section('page-heading', 'Exit handovers') @section('content')
Employee clearance

Uniform handover.

Account for issued uniforms and close an employee’s record safely.

Start clearance

Select a departing employee

Only active employees with outstanding uniform issues are shown.

Clearance log

Completed handovers

@forelse($handovers as $handover)@empty@endforelse
DateEmployeeItems accountedOutcomeStatus
{{ $handover->handover_date->format('d M Y') }}{{ $handover->employee->name }}{{ $handover->employee->employee_no }}{{ $handover->items->sum('quantity') }} units@foreach($handover->items->groupBy('condition') as $condition => $items){{ $items->sum('quantity') }} {{ str_replace('_',' ',$condition) }} @endforeachCompleted
Completed employee handovers will appear here.
@endsection