@extends('layouts.app') @section('title', 'Log #{{ $log->id }}') @section('page_title', 'Log de Auditoria #{{ $log->id }}') @section('page_actions') Voltar @endsection @section('content')

{{ $log->actionLabel() }}

{{ $log->created_at->format('d/m/Y H:i:s') }}
{{ $log->action }}
Usuario:{{ $log->user?->name ?? 'Sistema' }}
Empresa:{{ $log->company?->name ?? '-' }}
IP:{{ $log->ip ?? '-' }}
Registro:{{ $log->model_type ? class_basename($log->model_type).' #'.$log->model_id : '-' }}
@if ($log->description)
Descricao:{{ $log->description }}
@endif
@if ($log->old_values || $log->new_values)
ANTES
{{ json_encode($log->old_values, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) ?: '-' }}
DEPOIS
{{ json_encode($log->new_values, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) ?: '-' }}
@endif
@endsection