@extends('layouts.app') @section('title', 'Document Verification - PT. Surya Bersatu Utama') @section('content') {{-- Header --}}

Verification

Document Verification

{{-- Result --}}
@if($document) {{-- Verified Card --}}

Verified Document

{{ $document->original_filename }}

Uploaded by PT. Surya Bersatu Utama

Status

@if($document->status === 'verified') Verified @elseif($document->status === 'stamped') Valid — QR Code Stamped @else Draft @endif

Document ID

{{ $document->uuid }}

Upload Date

{{ $document->created_at->format('d M Y') }}

QR Stamped Pages

{{ $document->qr_pages === 'all' ? 'All pages' : $document->qr_pages }}

This document is authentic.

This document has been verified by PT. Surya Bersatu Utama's document management system.

@else {{-- Not Found --}}

Document Not Found

The document with this ID could not be found. Please check the QR code or contact PT. Surya Bersatu Utama.

@endif
@endsection