@extends('adminlte::page') @section('title', 'Organization Certificate Verification') @section('content_header')

Organization Certificate Verification

@stop @section('content')

Certification Management

Export CSV Manage Permissions
Total Certifications {{ number_format($stats['total_certifications']) }}
Last Sync {{ $stats['last_sync_human'] }}
Last Sync Date {{ $stats['last_sync'] ? \Carbon\Carbon::parse($stats['last_sync'])->format('M d, Y') : 'Never' }}
Status @if($stats['last_sync']) Active @else No Data @endif
@forelse($certifications as $certification) @empty @endforelse
CERTIFICATE NO. ACCOUNT NAME STANDARDS DATA UPDATED Synced At Actions
{{ $certification->certificate_no }} {{ Str::limit($certification->account_name, 30) ?: 'N/A' }} {{ Str::limit($certification->standards, 30) ?: 'N/A' }} {{ $certification->data_updated ? \Carbon\Carbon::parse($certification->data_updated)->format('M d, Y') : 'N/A' }} {{ $certification->synced_at ? \Carbon\Carbon::parse($certification->synced_at)->format('M d, Y H:i') : 'N/A' }}
No certifications found. @if($stats['total_certifications'] == 0) Click here to sync from Google Sheets. @endif
@if($certifications->hasPages())
{{ $certifications->links() }}
@endif
@stop @section('js') @stop