{{-- Fallback Viewer Component Displayed when no specific viewer is available for the file type. Variables: - $url: The URL of the file (optional) - $item: The FileSystemItem model (optional) - $fileType: The FileTypeContract instance (optional) --}} @php $url = $url ?? null; $item = $item ?? null; $fileType = $fileType ?? null; @endphp
@if($fileType) @else @endif

Preview not available

This file type cannot be previewed in the browser. @if($fileType)
Type: {{ $fileType->label() }} @endif

@if($url) Download file @endif @if($item)
@if($item->size) {{ $item->getFormattedSize() }} @endif
@endif