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

87 lines
4.5 KiB
PHP

@extends('superadmin.layouts.app')
@section('content')
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800">Gestione Categorie Ticket</h2>
<a href="{{ route('superadmin.categorie-ticket.create') }}"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Nuova Categoria
</a>
</div>
<!-- Tabella Categorie Ticket -->
<div class="overflow-x-auto">
<table class="min-w-full bg-white border border-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
ID
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Nome
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Descrizione
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Data Creazione
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Azioni
</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@forelse($categorieTicket as $categoria)
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $categoria->id }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">
{{ $categoria->nome }}
</td>
<td class="px-6 py-4 text-sm text-gray-900">
<div class="max-w-xs truncate" title="{{ $categoria->descrizione }}">
{{ $categoria->descrizione ?? '-' }}
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $categoria->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('superadmin.categorie-ticket.edit', $categoria) }}"
class="text-indigo-600 hover:text-indigo-900">
Modifica
</a>
<form method="POST" action="{{ route('superadmin.categorie-ticket.destroy', $categoria) }}"
class="inline"
onsubmit="return confirm('Sei sicuro di voler eliminare questa categoria? Questa azione non può essere annullata.')">
@csrf
@method('DELETE')
<button type="submit" class="text-red-600 hover:text-red-900">
Elimina
</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="5" class="px-6 py-4 text-center text-gray-500">
Nessuna categoria ticket trovata
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<!-- Paginazione -->
<div class="mt-6">
{{ $categorieTicket->links() }}
</div>
</div>
</div>
@endsection