@props(['history' => []])
{{-- HEADER --}}

History

@if(count($history))
    @foreach($history as $item)
  • {{ $item->action }}

    {{ $item->created_at->diffForHumans() }} • {{ $item->created_at->format("d/m/Y H:i") }}
    @if($item->user()->exists()) {{ $item->user->name_first }} {{ $item->user->name_last }} @endif
  • @endforeach
@else

No history is found for this.

@endif