netgescon-master/docs/team/project/resources/views/admin/tickets/index.blade.php
Pikappa2 480e7eafbd 🎯 NETGESCON - Setup iniziale repository completo
📋 Commit iniziale con:
-  Documentazione unificata in docs/
-  Codice Laravel in netgescon-laravel/
-  Script automazione in scripts/
-  Configurazione sync rsync
-  Struttura organizzata e pulita

🔄 Versione: 2025.07.19-1644
🎯 Sistema pronto per Git distribuito
2025-07-19 16:44:47 +02:00

149 lines
10 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 Tickets') }}
</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">Lista Tickets</h3>
<a href="{{ route('admin.tickets.create') }}"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Nuovo Ticket
</a>
</div>
<!-- Tabella Tickets -->
<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">
ID
</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">
Titolo
</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">
Stabile
</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">
Stato
</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">
Priorità
</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 Apertura
</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($tickets as $ticket)
<tr class="hover:bg-gray-50 dark:hover:bg-gray-700">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $ticket->id }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900 dark:text-gray-100">
{{ $ticket->titolo }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $ticket->stabile->denominazione ?? '-' }}
</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
@switch($ticket->stato)
@case('Aperto')
bg-red-100 text-red-800 dark:bg-red-800 dark:text-red-100
@break
@case('Preso in Carico')
bg-yellow-100 text-yellow-800 dark:bg-yellow-800 dark:text-yellow-100
@break
@case('In Lavorazione')
bg-blue-100 text-blue-800 dark:bg-blue-800 dark:text-blue-100
@break
@case('Risolto')
bg-green-100 text-green-800 dark:bg-green-800 dark:text-green-100
@break
@case('Chiuso')
bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-100
@break
@default
bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-100
@endswitch">
{{ $ticket->stato }}
</span>
</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
@switch($ticket->priorita)
@case('Urgente')
bg-red-100 text-red-800 dark:bg-red-800 dark:text-red-100
@break
@case('Alta')
bg-orange-100 text-orange-800 dark:bg-orange-800 dark:text-orange-100
@break
@case('Media')
bg-yellow-100 text-yellow-800 dark:bg-yellow-800 dark:text-yellow-100
@break
@case('Bassa')
bg-green-100 text-green-800 dark:bg-green-800 dark:text-green-100
@break
@default
bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-100
@endswitch">
{{ $ticket->priorita }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-100">
{{ $ticket->data_apertura->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.tickets.show', $ticket) }}"
class="text-blue-600 hover:text-blue-900 dark:text-blue-400 dark:hover:text-blue-300">
Visualizza
</a>
<a href="{{ route('admin.tickets.edit', $ticket) }}"
class="text-indigo-600 hover:text-indigo-900 dark:text-indigo-400 dark:hover:text-indigo-300">
Modifica
</a>
<form method="POST" action="{{ route('admin.tickets.destroy', $ticket) }}"
class="inline"
onsubmit="return confirm('Sei sicuro di voler eliminare questo ticket?')">
@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="7" class="px-6 py-4 text-center text-gray-500 dark:text-gray-400">
Nessun ticket trovato
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<!-- Paginazione -->
<div class="mt-6">
{{ $tickets->links() }}
</div>
</div>
</div>
</div>
</div>
</x-app-layout>