@lang("Activity Log")

@foreach ($activities as $activity) @endforeach
@lang("Current") @lang("Old") @lang("At") @lang("User") @lang("Type")
    @foreach ($attributes as $key => $value) @if (is_array($value))
  • {{ label_case($key) }} :
  • @else
  • {{ label_case($key) }} : {{ $value }}
  • @endif @endforeach
@if (isset($activity->properties["old"]))
    @foreach ($attributes as $key => $value) @if (is_array($value))
  • {{ label_case($key) }} :
  • @else
  • {{ label_case($key) }} : {{ $value }}
  • @endif @endforeach
@endif
@lang("Updated") : {{ $activity->updated_at->diffForHumans() }}
@lang("At") : {{ $activity->updated_at->isoFormat("llll") }}
{{ label_case($activity->causer_id) }} {{ label_case($activity->description) }}
{{ $activities->links() }}