@extends('layouts.adminlte') @section('title', 'Modifica Documento') @section('page_title', 'Modifica Documento') @section('content')
@csrf @method('PUT')

Dati Documento

Informazioni

@if($documento->user) @endif
File: {{ $documento->file_path }}
Tipo MIME: {{ $documento->mime_type ?? '-' }}
Dimensione: {{ $documento->dimensione ? number_format($documento->dimensione / 1024, 1) . ' KB' : '-' }}
Creato: {{ $documento->created_at->format('d/m/Y H:i') }}
Utente: {{ $documento->user->name }}
@if($documento->file_path)
Scarica @endif
@include('partials._tag-selector', ['selectedTags' => $selectedTags ?? [], 'label' => 'Etichette'])
@if($documento->user) @endif
File: {{ $documento->file_path }}
Tipo MIME: {{ $documento->mime_type ?? '-' }}
Dimensione: {{ $documento->dimensione ? number_format($documento->dimensione / 1024, 1) . ' KB' : '-' }}
Creato: {{ $documento->created_at->format('d/m/Y H:i') }}
Utente: {{ $documento->user->name }}
@if($documento->file_path)
Scarica @endif
Torna all'elenco
@endsection