{{ $entry->getLabel() }}
@if($record->event == 'created')
@if(count($record->getModified()) === 0) No changes @else @foreach ($record->getModified() as $key => $value) @if(empty($value['new'])) @continue @endif
{{ $key }}

{{ $value['new'] ?? '' }}

@endforeach @endif
@else
@if(count($record->getModified()) === 0) No changes @else @foreach ($record->getModified() as $key => $value) @if(empty($value['new']) && empty($value['old'])) @continue @endif
{{ $key }} changed from

{{ $value['old'] ?? '' }}

->

{{ $value['new'] ?? '' }}

@endforeach @endif
@endif