@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 record safely.

Start clearance

Select a departing employee

All active employees are available. Employees with no issued uniforms can complete a clear handover.

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@forelse($handover->items->groupBy('condition') as $condition => $items){{ $items->sum('quantity') }} {{ str_replace('_',' ',$condition) }} @emptyNothing outstanding@endforelseCompleted
Completed employee handovers will appear here.
@endsection