@extends('admin.layouts.app') @section('title', __('admin.audit_logs.title')) @section('breadcrumb') @endsection @section('content')
| # | {{ __('admin.audit_logs.when') }} | {{ __('admin.audit_logs.actor') }} | {{ __('admin.audit_logs.module') }} | {{ __('admin.audit_logs.action') }} | {{ __('admin.audit_logs.entity') }} | IP | {{ __('admin.audit_logs.details') }} |
|---|---|---|---|---|---|---|---|
| {{ $log->id }} |
{{ optional($log->created_at)->format('M d, Y H:i:s') }}
{{ optional($log->created_at)->diffForHumans() }}
|
{{ $log->actor_name }}
{{ $log->actor_type }}
|
{{ ucfirst(str_replace(['-', '.'], ' ', $log->module)) }} | {{ ucfirst(str_replace('_', ' ', $log->action)) }} |
{{ $log->entity_label }}
{{ $log->entity_type }}
|
{{ $log->ip_address ?: '—' }} | {{ __('common.view') }} |
| {{ __('admin.audit_logs.empty') }} | |||||||