@extends('layouts.app') @section('title', 'User Activity: ' . $user->name) @section('content')
Back to User

Activity: {{ $user->name }}

{{ $user->name }}

{{ $user->email }}

{{ $user->role->display_name ?? $user->role->name ?? 'No Role' }}

@forelse($logs as $log) @empty @endforelse
Timestamp Action Module Description Actions
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('H:i:s') }}
{{ ucfirst($log->action) }} {{ ucfirst(str_replace('_', ' ', $log->module)) }}
{{ Str::limit($log->description, 80) }}
View
No activity logs found for this user.
@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection