@extends('adminlte::page') @section('title', 'Employee Documents') @include('partials.ui-polish') @section('content_header')
| Employee | Document | Expiry | Size | Actions |
|---|---|---|---|---|
|
{{ $document->employee->full_name ?? 'Unknown employee' }}
{{ $document->employee->employee_code ?? '' }}
@if($document->employee?->department)
· {{ $document->employee->department->name }}
@endif
|
{{ $document->title }}
{{ $document->document_type }} · {{ $document->mime_type }}
|
@if($document->expires_at)
{{ $document->expires_at->format('M d, Y') }}
@if($expired)
Expired
@elseif($expiringSoon)
Expiring soon
@endif
@else
No expiry
@endif
|
{{ number_format($document->file_size / 1024, 1) }} KB | Download |
| No employee documents found. | ||||