User Activity Alert

Activity: {{ $activity['activity'] }}

Description: {{ $activity['description'] }}

User Information

User ID {{ $activity['user_id'] }}
Name {{ $activity['user_name'] }}
Email {{ $activity['user_email'] }}
Timestamp {{ $activity['timestamp'] }}
IP Address {{ $activity['ip_address'] }}
User Agent {{ $activity['user_agent'] }}
@if(!empty($activity['data']))

Additional Details

@foreach($activity['data'] as $key => $value) @endforeach
{{ ucfirst(str_replace('_', ' ', $key)) }} @if(is_array($value))
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@else {{ $value }} @endif
@endif