{{ __('Last 5 Activities')}}
@foreach($items as $item) @endforeach
{{ __('Id')}} {{ __('Description')}} {{ __('Model')}} {{ __('Item Id')}} {{ __('Changer')}} {{ __('Attributes')}}
{{ $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