@extends('layouts.admin') @section('title') Utenti @stop @section('content')
@if(Auth::user()->is_admin) @endif @foreach($users as $user) @if(Auth::user()->is_admin) @endif @endforeach
Nome Admin Livello
{{$user->name}} {{$user->is_admin ? 'Si' : 'No'}} {{$user->level}}
@csrf @method('DELETE')
@if(Auth::user()->only_read == false) Aggiungi @endif
@stop