@section('page-title') {{ __('Logs') }} @endsection @section('breadcrumbs')
{{ __('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') }} |