@extends('admin.layouts.app') @section('title', 'Activity Log') @section('breadcrumb') Activity Log @endsection @section('content')
Recent Activity
@forelse($logs as $log) @php $actionColors = [ 'login' => 'badge-green', 'logout' => 'badge-gray', 'create' => 'badge-blue', 'update' => 'badge-orange', 'delete' => 'badge-red', 'view' => 'badge-teal', ]; $actionIcons = [ 'login' => 'log-in', 'logout' => 'log-out', 'create' => 'plus', 'update' => 'pencil', 'delete' => 'trash-2', 'view' => 'eye', ]; @endphp @empty @endforelse
Time User Action Subject Description IP Address
{{ $log->created_at->format('d M Y H:i') }}
{{ strtoupper(substr($log->user?->name ?? 'S', 0, 1)) }}
{{ $log->user?->name ?? 'System' }}
{{ ucfirst($log->action) }} {{ $log->subject_type ?? '—' }} {{ Str::limit($log->description, 60) }} {{ $log->ip_address ?? '—' }}
No activity recorded yet
@if(isset($logs) && method_exists($logs, 'links') && $logs->hasPages()) {{ $logs->links('vendor.pagination.admin') }} @endif
@endsection