@extends('layouts.logeado') @if (isset($filtro)) @section('sub_title', 'Lista de Usuarios. Filtro: ' . $filtro[0] . '=' . $filtro[1]) @else @section('sub_title', 'Lista de Usuarios') @endif @section('sub_content')
Nuevo usuario

Exportar:

@forelse($users as $user) @empty @endforelse
Usuario Nombre Estado Rol
{{ $user->usuario }} {{ $user->nombres }} @if ($user->estado == 1) Activo @else Inactivo @endif {{ $user->rol->nombre }} Actualizar @if ($user->roles_id == 2) Permisos @endif
No hay datos
@endsection @section('script') @endsection