@extends('layouts.inspinia') @section('title', 'Document Expiry') @section('content_header', 'Document Expiry') @section('breadcrumb')
| Employee | Document Type | Title | Expiry Date | Days Remaining | Status |
|---|---|---|---|---|---|
| {{ $doc->employee->full_name }} ({{ $doc->employee->employee_number }}) | {{ ucwords(str_replace('_', ' ', $doc->document_type)) }} | {{ $doc->title }} | {{ $doc->expiry_date->format('d M Y') }} | @if($isPast) {{ abs($daysRemaining) }} days ago @else {{ $daysRemaining }} @endif | @if($isPast) Expired @elseif($daysRemaining <= 30) Expiring Soon @else Valid @endif |
| No documents found. | |||||