@extends('layouts.app') @section('title', 'Employee Compliance Expiries Dashboard') @section('content')

HR Document Compliance Expiries

Track expiring passports, residence visas, Emirates IDs, labour cards, and health insurance.

Back to Directory
Expiring Documents (Next 90 Days) Automated Reminder Engine Active
@forelse($expiringDocs as $doc) @empty @endforelse
Employee Document Type Document # Expiry Date Days Remaining Action
{{ $doc->employee->full_name }} {{ str_replace('_', ' ', $doc->document_type) }} {{ $doc->document_number ?? 'N/A' }} {{ $doc->expiry_date->format('d M Y') }} @php $days = now()->diffInDays($doc->expiry_date, false); @endphp {{ $days < 0 ? 'EXPIRED' : $days . ' Days Left' }} Update Expiry
No employee compliance documents expiring within the next 90 days.
@endsection