@extends('layouts.panel.base') @section('user-active', 'kt-menu__item--active') @section('title', 'Detalles del Usuario') @section('content')

Usuarios

Detalles del Usuario

@if(Session::has('success')) @endif

Información General

nombre: {{ ucwords($user->name) }}

Apellido: {{ ucwords($user->last_name) }}

Correo: {{ $user->email }}

Rol: {{ ucwords(implode( ", ", $user->getRoleNames()->toArray())) }}

Estatus: {{ $user->status }}

Historial

@if(count($history)>0) @foreach($history as $key => $value) @endforeach
Estatus Usuario Fecha
{{ $value->status }} @if(isset($datos->motivo) || isset($datos->comentario)) {!! '
'.$mensaje.'' !!} @endif
{{ ucwords($value->user->name) }} {{ ucwords($value->user->last_name) }} {{ date_format(date_create($value->created_at),"d/m/Y H:i:s") }}
@else @endif
@endsection @section('js') @endsection