@include('backend.errors')
@if($is_read_only)
This record has been Finalized and is read-only. Only an Admin can edit it.
@endif
@if(!empty($data['id']))
| Field |
Old Value |
New Value |
Action |
Performed By |
DateTime |
@if(isset($history))
@forelse($history as $hist)
| {{ $hist->field_name }} |
{{ $hist->old_value ?? '-' }} |
{{ $hist->new_value ?? '-' }} |
{{ ucfirst($hist->action_type) }}
|
{{ optional($hist->user)->name ?? '' }} |
{{ $hist->created_at->format('d-m-Y H:i') }} |
@empty
| No history found |
@endforelse
@endif
@endif