@extends('procurement::layouts.master') @section('title','Document') @section('content')

{{ $document->file_name }}

@csrf @method('DELETE')
← Back
Document Type
{{ ucfirst($document->document_type) }}
Attached To
{{ class_basename($document->documentable_type) }} #{{ $document->documentable_id }}
File Name
{{ $document->file_name }}
File Size
{{ $document->file_size_human }}
MIME Type
{{ $document->mime_type ?: '—' }}
Uploaded By
{{ $document->uploaded_by ?: '—' }}
Uploaded
{{ $document->created_at->format('M j, Y H:i') }}
@if($document->notes)
Notes
{{ $document->notes }}
@endif
@endsection