@extends('layouts.app') @section('title', 'Database Management') @push('head') @endpush @section('content')
The following vessel-certificate combinations have duplicate records:
| ID | Vessel | Certificate | ID Number | Department | Issued Date | Expiry Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $cert->id }} | {{ $cert->vessel->name }} | {{ $cert->certificate->category }} {{ $cert->certificate->name }} | {{ $cert->id_no ?: '-' }} | {{ $cert->vessel_department ?: '-' }} | {{ $cert->issued_date ? $cert->issued_date->format('Y-m-d') : '-' }} | {{ $cert->expiry_date ? $cert->expiry_date->format('Y-m-d') : '-' }} | @if($cert->expiry_date) @if($cert->expiry_date->isPast()) Expired @elseif($cert->expiry_date->lte(now()->addDays(30))) Expiring Soon @else Valid @endif @else No Expiry @endif |
Try adjusting your filters to see more results.