| {{ $document->mandatoryDocument->name ?? null}} |
{{ $document->expiry_date ? $document->expiry_date->format('d/m/Y') : null}} |
{{ $document->uploaded_date_time ? $document->uploaded_date_time->format('d/m/Y h:iA') : null}} |
@php
$isExpired = isset($document->expiry_date) ? \Carbon\Carbon::parse($document->expiry_date)->lt(\Carbon\Carbon::today()) : '';
@endphp
@if($isExpired)Expired
@else Active
@endif
|
|
@endforeach
@endif