| {{ __('Id')}} |
{{ __('Description')}} |
{{ __('Model')}} |
{{ __('Item Id')}} |
{{ __('Changer')}} |
{{ __('Attributes')}} |
@foreach($items as $item)
| {{ $item->id }} |
{{ $item->description }} |
{{ $item->subject_type }} |
{{ $item->subject_id }} |
{{ $item->causer->name }} |
@if($item->changes())
@php($attributes = $item->changes())
@if( isset($attributes["attributes"]) )
NEW
@foreach($attributes["attributes"] as $key => $attribute)
{{ $key .":". $attribute }}
@endforeach
@elseif( isset($attributes["old"]) )
OLD
@foreach($attributes["old"] as $key => $old)
{{ $key .":". $old }}
@endforeach
@endif
@endif
|
@endforeach