@extends('layouts.appback') @section('title', 'Elenco Utenti') @section('content')
@if ($utenti->isEmpty())
Non ci sono utenti. Crea il primo!
@else @foreach ($utenti as $utente) @endforeach
# Nome Cognome Email Azienda Status Ruolo Azioni
{{ $utente->id }} {{ $utente->name }} {{ $utente->surname }} {{ $utente->email }} {{ $utente->azienda?->nome ?? 'Amazon' }} @if ($utente->status == 'Non attivo') {{ $utente->status }} @else {{ $utente->status }} @endif {{ $utente->role }} Modifica
@csrf @method('DELETE')
@endif
@endsection