@extends('admin.layouts.netgescon') @section('content')

Documento

Torna alla lista @if(!empty($documento?->file_path)) Scarica @endif
Titolo: {{ $documento->titolo ?? '-' }}
Tipo: {{ $documento->tipo ?? '-' }}
Creato il: {{ optional($documento->created_at)->format('d/m/Y H:i') ?? '-' }}
File: {{ $documento->nome_file ?? $documento->file_path ?? '-' }}
@php $path = (string) ($documento->file_path ?? ''); $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); $isPdf = $ext === 'pdf'; @endphp @if(!empty($documento?->file_path))
Anteprima
@if($isPdf) @else @endif
@else
Nessun file associato a questo documento.
@endif
@endsection