@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Alerta SEI')) @section('content') @include('errors.messageFlash')
| {{ __('Data') }} | {{ __('Usuário') }} | {{ __('Conteúdo') }} | {{ __('Publicar em') }} | {{ __('Exibir até') }} | {{ __('Status') }} | {{ __('Ação') }} |
|---|---|---|---|---|---|---|
| {{ $historico->data_formatada }} | {{ $historico->usuario->name ?? __('Sistema') }} | @if ($historico->conteudo) {{ $historico->conteudo_resumido }} @else - @endif | @if ($historico->publicado_em) {{ $historico->publicado_em_formatado }} @else - @endif | @if ($historico->exibir_ate) {{ $historico->exibir_ate_formatado }} @else {{ __('Sem prazo') }} @endif | {{ $historico->status_exibicao_label }} | @if ($historico->acao === \App\Models\Sei\SeiAlertaHistorico::ACAO_STATUS) {{ __('Status') }} @else {{ __('Conteúdo') }} @endif |