@extends('layouts.master') @section('css') {!! Html::style('css/jquery_ui.css')!!} @stop @section('content') @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif @if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif {!! Form::open(array('url' => 'sistema/auditoria')) !!}{!! csrf_field() !!}
Buscar Auditoría

{!! Form::select('usuario', [null=>'']+$usuarios, $usuario, array('class' => 'form-control', 'id' => 'usuario','required' => true))!!}



{!! Form::close() !!} @if($mensajeError)
No hay auditoria que mostrar

@endif @if(!$mensajeError)
Datos del usuario

@foreach($administrador->auditoria as $auditoria) @endforeach
Usuario Proceso Fecha Hora
{!! $administrador->username !!} {!! $auditoria->descripcion !!} {!! date_format(date_create($auditoria->created_at),'d/m/Y') !!} {!! date_format(date_create($auditoria->created_at), 'H:i A')!!}
@endif @stop @section('postscript') {!! Html::script('js/jquery_ui.js') !!} @stop