| 字段 | 旧值 | 新值 |
|---|---|---|
| {{ $key }} @if($hasChanged) 已变更 @endif |
@if($oldValue !== null)
@if(is_array($oldValue) || is_object($oldValue))
@else
-
@endif
{{ json_encode($oldValue, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) }}
@else
{{ $oldValue }}
@endif
|
@if($newValue !== null)
@if(is_array($newValue) || is_object($newValue))
@else
-
@endif
{{ json_encode($newValue, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) }}
@else
{{ $newValue }}
@endif
|
{{ json_encode($old, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) }}
{{ json_encode($attributes, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) }}