@extends('layouts.app') @section('title', 'Transaction History') @section('content')
| Admin | Action | Transaction ID | Description | Date & Time | IP Address | Action |
|---|---|---|---|---|---|---|
|
{{ $log->user->name }}
{{ $log->user->email }}
|
@if($log->action == 'created') Created @elseif($log->action == 'updated') Updated @elseif($log->action == 'deleted') Deleted @else {{ ucfirst($log->action) }} @endif | TXN-{{ $log->model_id }} |
{{ $log->description }} |
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('H:i:s') }}
|
{{ $log->ip_address }}
|
View Admin |
| No transaction activities found | ||||||