@extends('layouts.admin') @section('title', 'Detalhe do Log') @section('breadcrumb') Auditoria @endsection @push('styles') @endpush @section('content') @php $oldVals = $auditLog->old_values ?? []; $newVals = $auditLog->new_values ?? []; $allKeys = collect(array_unique(array_merge(array_keys($oldVals), array_keys($newVals))))->sort(); $actionColors = [ 'created' => ['bg'=>'#dcfce7','color'=>'#16a34a'], 'updated' => ['bg'=>'#dbeafe','color'=>'#2563eb'], 'deleted' => ['bg'=>'#fee2e2','color'=>'#dc2626'], 'canceled' => ['bg'=>'#fce7f3','color'=>'#be185d'], 'payment' => ['bg'=>'#d1fae5','color'=>'#059669'], 'checkout' => ['bg'=>'#fef3c7','color'=>'#d97706'], ]; $ac = $actionColors[$auditLog->action] ?? ['bg'=>'#f1f5f9','color'=>'#475569']; @endphp