@extends('templates.default')
@section('css')
@endsection
@section('nav')
Home
Usuarios
@endsection
@section('title_right')
@endsection
@section('content')
|
Usuario |
Nombres |
Email |
Rol |
Estado |
@foreach($usuarios as $u)
@if($u->id!='10')
|
{{ $u->usuario }} |
{{ $u->nombre }} |
{{ $u->email }} |
{{ $u->getRolDisplay() }} |
{{ $u->getEstadoDisplay() }} |
@endif
@endforeach
{{ $usuarios->appends(Input::except('page'))->links() }}
@endsection
@section('js-footer')
@endsection