{{-- resources/views/admin/log/AdminAuditLogController.blade.php --}} @extends('admin.layouts.app') @section('title', '관리자 감사 로그') @section('page_title', '관리자 감사 로그') @section('page_desc', '관리자 행위 감사로그를 조회합니다. (상세는 모달)') @section('content_class', 'a-content--full') @push('head') @endpush @section('content') @php $indexUrl = route('admin.systemlog.admin-audit-logs', [], false); $showTpl = route('admin.systemlog.admin-audit-logs.show', ['id' => '__ID__'], false); $f = $filters ?? []; $dateFrom = (string)($f['date_from'] ?? ''); $dateTo = (string)($f['date_to'] ?? ''); $actorQ = (string)($f['actor_q'] ?? ''); $action = (string)($f['action'] ?? ''); $tt = (string)($f['target_type'] ?? ''); $ip = (string)($f['ip'] ?? ''); @endphp
| ID | Actor | Action | Target Type | IP | Created | 상세 |
|---|---|---|---|---|---|---|
| {{ $id }} |
{{ $aName !== '' ? $aName : '-' }}
{{ $aEmail !== '' ? $aEmail : 'admin_users 미조회' }}
|
{{ $r['action'] ?? '-' }} | {{ $r['target_type'] ?? '-' }} | {{ $r['ip'] ?? '-' }} | {{ $r['created_at'] ?? '-' }} | |
| 데이터가 없습니다. | ||||||