@extends('layouts.admin.base') @section('page-title') Admin Action Logs @endsection @section('content')
Admin Action Logs

View all administrative actions and changes made in the system

@forelse($logs as $log) @empty @endforelse
Date & Time Admin Action Type Target User Table Record ID Details
{{ formatDateTime($log->created_at) }} @if($log->admin) {{ $log->admin->name }} @else N/A @endif {{ $log->action_type_display }} @if($log->targetUser) {{ $log->targetUser->name }} @else N/A @endif {{ $log->target_table }} {{ $log->target_id ?? 'N/A' }}
No action logs found
{{ $logs->links() }}
@endsection @section('script') @endsection