@extends('layouts.user') @section('title', 'Activity Logs') @section('content')
View your recent activities and audit trail.
| Date & Time | Action | Description | IP Address |
|---|---|---|---|
| {{ $log->created_at->format('M d, Y h:i A') }} | {{ $log->action }} |
{{ $log->description ?: '-' }}
@if($log->subject_type && $log->subject_id)
Ref:
{{ class_basename($log->subject_type) }} #{{ $log->subject_id }}
@endif
@if($log->properties)
{{ json_encode($log->properties, JSON_PRETTY_PRINT) }}
@endif
|
{{ $log->ip_address ?: '-' }} |
| No activity logs found for this period. | |||