@extends('listing.listing') @section('table') Agregar Nuevo Usuario
Nombre Email Rol @foreach ($users as $user) {{$user->name}} {{$user->email}} {{$user->rolName()}} @if(Auth::user()->rol != $user->rol) @if($deleted) Activar @else Archivar @endif @endif @endforeach @if(Auth::user()->rol == 1) @if($deleted) Ver activos
@else Ver archivados
@endif @endif @endsection