@extends('layouts.app') @section('content')
{{ __('Utenti') }}
@foreach($utenti as $utente) @endforeach
Id Nome Email
{{$utente->id}} {{$utente->name}} {{$utente->email}}
@endsection