Document Information
File Name
{{ $document->file_name }}
File Type
{{ $document->file_type_label }}
(.{{ $document->file_extension }})
File Size
{{ $document->formatted_file_size }}
Category
{{ $document->category_label }}
Document Type
{{ $document->type_label }}
Owner
{{ $document->owner_name ?? 'Unknown Owner' }}
@if($document->owner_email)
{{ $document->owner_email }}
@endif
Uploaded By
{{ $document->uploader->name ?? 'Unknown User' }}
Upload Date
{{ $document->created_at->format('M j, Y \a\t h:i A') }}
@if($document->tags && count($document->tags) > 0)
Tags
@foreach($document->tags as $tag)
{{ $tag }}
@endforeach
@endif
@if($document->fileExists())
File is available in storage
@endif