@section('page-title') {{ __('Logs') }} @endsection @section('breadcrumbs') @endsection
@if($items->count() > 0) @foreach($items as $item) @endforeach @else @endif
{{ __('ID') }} {{ __('Action') }} {{ __('Identifier') }} {{ __('IP Address') }} {{ __('Data') }} {{ __('Created At') }}

{{ $item->id }}

{{ $item->getDescription() }}

{{ $item->getIdentifierDescription() }}

{{ $item->ip_address }}

@php($data = json_decode($item->data)) @if($data) @foreach($data as $key => $value)
                                                    {{ $key }} = {{ is_array($value) ? implode(', ', $value) : $value }}
@endforeach @else - @endif

{{ formatDatetime($item->created_at) }}

{{ __('No logs found') }}

{{ $items->links() }}
@include('common.modal-delete-item', ['name' => 'log']) @include('common.confirm-bulk-action') @include('common.confirm-purge-action')