netgescon-master/_DUPLICATES_MOVED/resources/views/superadmin/amministratori/index.blade.php

95 lines
5.3 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 Amministratori</h2>
<a href="{{ route('superadmin.amministratori.create') }}"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Nuovo Amministratore
</a>
</div>
<!-- Tabella Amministratori -->
<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 e Cognome
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Denominazione Studio
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Utente Associato
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Partita IVA
</th>
<th class="px-6 py-3 border-b border-gray-200 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
Email Studio
</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($amministratori as $amministratore)
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $amministratore->id_amministratore }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">
{{ $amministratore->nome }} {{ $amministratore->cognome }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $amministratore->denominazione_studio ?? '-' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
<div>
<div class="font-medium">{{ $amministratore->user->name }}</div>
<div class="text-gray-500">{{ $amministratore->user->email }}</div>
</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $amministratore->partita_iva ?? '-' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
{{ $amministratore->email_studio ?? '-' }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium space-x-2">
<a href="{{ route('superadmin.amministratori.edit', $amministratore) }}"
class="text-indigo-600 hover:text-indigo-900">Modifica</a>
<form method="POST" action="{{ route('superadmin.amministratori.destroy', $amministratore) }}" class="inline"
onsubmit="return confirm('Sei sicuro di voler eliminare questo amministratore? Verrà eliminato anche l\'utente associato.')">
@csrf
@method('DELETE')
<button type="submit" class="text-red-600 hover:text-red-900">Elimina</button>
</form>
</td>
</tr>
@empty
<tr>
<td colspan="7" class="px-6 py-4 text-center text-gray-500">
Nessun amministratore trovato
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
<!-- Paginazione -->
<div class="mt-6">
{{ $amministratori->links() }}
</div>
</div>
</div>
@endsection