@extends('layouts.master') @section('title', 'Debug - Auditoria Splash') @section('main-content')

Dados da Tabela: auditoria_splash


Total de registros encontrados: {{ $dados->count() }}
@if($dados->count() > 0)
@foreach($dados as $item) @endforeach
ID HS Serial MAC Address Página Clicada Imagem Identity Data/Hora
{{ $item->id }} {{ $item->hs_serial ?? '---' }} {{ $item->mac_formatado }} {{ Str::limit($item->pag_click ?? '---', 50) }} {{ Str::limit($item->imagem ?? '---', 30) }} {{ $item->dsc_identity ?? '---' }} {{ $item->created_at?->format('d/m/Y H:i:s') ?? '---' }}

Dados em JSON (últimos 5):

{{ json_encode($dados->take(5)->toArray(), JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
@else
Nenhum registro encontrado na tabela.
@endif
Voltar
@endsection