@extends('admin.layout.app') @section('title','Show Audit') @section('header')

Home - Audit Managment

@endsection @section('content')
{{ __('Show') }} Audit

{{ $audit->user?->name }}

Model {{ $audit->auditable_type }}
Auditable ID {{ $audit->auditable_id }}
Time {{ $audit->created_at }}
@foreach($audit->new_values as $attribute => $value) @endforeach
{{ $attribute }} {{ $value }}
@foreach($audit->old_values as $attribute => $value) @endforeach
{{ $attribute }} {{ $value }}
@endsection