{{ $document->title }}

File: {{ $document->file_name }}

Category: {{ $document->category->name }}

Print Count: {{ $document->print_count }}

Printed: {{ now()->format('F j, Y \a\t g:i A') }}

Open in New Tab Back to Document
@php $fileExtension = strtolower(pathinfo($document->file_name, PATHINFO_EXTENSION)); $isPdf = $fileExtension === 'pdf'; $isImage = in_array($fileExtension, ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp']); $isText = in_array($fileExtension, ['txt', 'md']); @endphp @if($isPdf) @elseif($isImage) {{ $document->title }} @elseif($isText) @else

Preview not available for this file type.

File Type: {{ strtoupper($fileExtension) }}

Download and Open
@endif