@extends('layouts.app') @section('title', $pageInfo['title']) @section('admin-content')

{{ $pageInfo['title'] }}

Reset Cache
@csrf @method('DELETE')
Panel Pencarian & Filter
s/d

Export Hasil Pencarian ke Excel * Menampilkan {{ $data->firstItem() }} sampai {{ $data->lastItem() }} dari {{ $data->total() }} log.
@include('backend.layouts.partials.messages')
@foreach ($data as $item) @endforeach
User IP Address Aksi Aktivitas Browser Waktu
{{ $item->user->username ?? 'System' }} {{ $item->ip_address }} @php $badge = match($item->action) { 'Insert', 'Create' => 'success', 'Update' => 'warning', 'Delete', 'Reject', 'Error' => 'danger', 'Approve' => 'primary', default => 'info' }; @endphp {{ $item->action }} {{ $item->activity }} {{ $item->browser }}
{{ $item->created_at->format('d M Y') }} {{ $item->created_at->format('H:i') }} ({{ $item->created_at->diffForHumans() }})
@endsection