netgescon-master/resources/views/admin/documenti/index.blade.php
2025-06-29 23:39:33 +02:00

146 lines
9.8 KiB
PHP

<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
{{ __('Gestione Documenti') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white dark:bg-gray-800 overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 text-gray-900 dark:text-gray-100">
<div class="flex justify-between items-center mb-6">
<h3 class="text-2xl font-bold text-gray-800 dark:text-gray-200">Archivio Documenti</h3>
<a href="{{ route('admin.documenti.create') }}"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Carica Documento
</a>
</div>
<!-- Filtri -->
<div class="bg-gray-50 dark:bg-gray-700 p-4 rounded-lg mb-6">
<form method="GET" action="{{ route('admin.documenti.index') }}">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<!-- Ricerca -->
<div>
<x-input-label for="search" :value="__('Cerca')" />
<x-text-input id="search" name="search" type="text" class="mt-1 block w-full"
:value="request('search')" placeholder="Nome file o descrizione..." />
</div>
<!-- Tipo Documento -->
<div>
<x-input-label for="tipo_documento" :value="__('Tipo Documento')" />
<select id="tipo_documento" name="tipo_documento" class="mt-1 block w-full border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm">
<option value="">Tutti i tipi</option>
@foreach($tipiDocumento as $tipo)
<option value="{{ $tipo }}" {{ request('tipo_documento') === $tipo ? 'selected' : '' }}>
{{ $tipo }}
</option>
@endforeach
</select>
</div>
<!-- Pulsanti -->
<div class="flex items-end space-x-2">
<x-primary-button type="submit">
{{ __('Filtra') }}
</x-primary-button>
<x-secondary-button type="button" onclick="window.location='{{ route('admin.documenti.index') }}'">
{{ __('Reset') }}
</x-secondary-button>
</div>
</div>
</form>
</div>
<!-- Tabella Documenti -->
<div class="overflow-x-auto">
<table class="min-w-full bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700">
<thead class="bg-gray-50 dark:bg-gray-700">
<tr>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Nome File
</th>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Tipo
</th>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Collegato a
</th>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Dimensione
</th>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Data Caricamento
</th>
<th class="px-6 py-3 border-b border-gray-200 dark:border-gray-600 text-left text-xs font-medium text-gray-500 dark:text-gray-300 uppercase tracking-wider">
Azioni
</th>
</tr>
</thead>
<tbody class="bg-white dark:bg-gray-800 divide-y divide-gray-200 dark:divide-gray-700">
@forelse($documenti as $documento)
<tr class="hover:bg-gray-50 dark:hover:bg-gray-700">
<td class="px-6 py-4 text-sm font-medium text-gray-900 dark:text-gray-100">
{{ $documento->nome_file }}
@if($documento->descrizione)
<p class="text-xs text-gray-500 dark:text-gray-400 mt-1">{{ $documento->descrizione }}</p>
@endif
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800 dark:bg-blue-800 dark:text-blue-100">
{{ $documento->tipo_documento }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $documento->documentable->denominazione ?? 'N/A' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $documento->dimensione_leggibile }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $documento->created_at->format('d/m/Y H:i') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium space-x-2">
<a href="{{ route('admin.documenti.download', $documento) }}"
class="text-blue-600 hover:text-blue-900 dark:text-blue-400 dark:hover:text-blue-300">
Download
</a>
<a href="{{ route('admin.documenti.show', $documento) }}"
class="text-green-600 hover:text-green-900 dark:text-green-400 dark:hover:text-green-300">
Visualizza
</a>
<form method="POST" action="{{ route('admin.documenti.destroy', $documento) }}"
class="inline"
onsubmit="return confirm('Sei sicuro di voler eliminare questo documento?')">
@csrf
@method('DELETE')
<button type="submit" class="text-red-600 hover:text-red-900 dark:text-red-400 dark:hover:text-red-300">
Elimina
</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="6" class="px-6 py-4 text-center text-gray-500 dark:text-gray-400">
Nessun documento trovato
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<!-- Paginazione -->
<div class="mt-6">
{{ $documenti->appends(request()->query())->links() }}
</div>
</div>
</div>
</div>
</div>
</x-app-layout>