Document Preview

@if ($document->file_type == 'application/pdf')
@elseif (in_array($document->file_type, ['jpg', 'jpeg', 'png']))
Document Image
@elseif ($document->file_type == 'txt')
{{ file_get_contents(storage_path('app/public/' . $document->file_path)) }}
@else

Unsupported document type.

@endif