@section('title', __('Audit Trail'))

{{ __('Audit Trails') }}

@foreach($users as $user) @endforeach @foreach($sections as $section) @endforeach @foreach($types as $type) @endforeach
@foreach($this->userlogs() as $log) @endforeach
{{ __('User') }} {{ __('Action') }} {{ __('Section') }} {{ __('Type') }} {{ __('View') }} {{ __('Created At') }}
{{ $log->user->name ?? '' }} {{ $log->title }} {{ $log->section }} {{ $log->type }} @if ($log->link !== null) {{ __('View') }} @endif {{ $log->created_at !=='' ? date('jS M Y H:i:s', strtotime($log->created_at)) : '' }}
{{ $this->userlogs()->links() }}