@extends('layouts.admin')
@section('title', 'Activity Logs')
@section('content')
Pantau semua aktivitas penting yang terjadi di sistem.Activity Logs
| Timestamp | User | Action | Details | IP Address |
|---|---|---|---|---|
|
{{ $log->created_at->format('d M Y') }} {{ $log->created_at->format('H:i:s') }} |
@if($log->user)
{{ substr($log->user->name, 0, 1) }}
{{ $log->user->name }} {{ ucfirst($log->user->role) }} |
{{ str_replace('_', ' ', $log->action) }} |
{{ $log->description ?: '-' }} |
{{ $log->ip_address }} |
|
Belaum ada aktivitas yang tercatat. |
||||