Skip to content

Commit

Permalink
feat: old value and changed value added in logs view blade (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dipesh79 authored Mar 25, 2024
1 parent c1de477 commit 592e6b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/views/logs.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
<th>User</th>
<th>IP Address</th>
<th>Device</th>
<th>Old Value</th>
<th>New Value</th>
<th>Action At</th>
</tr>
</thead>
Expand All @@ -45,6 +47,8 @@
<td class="text">{{$log->user[config('user-logs.user_identifier')]}}</td>
<td class="text">{{$log->ip_address}}</td>
<td class="text">{{$log->device}}</td>
<td class="text">{{$log->old_data}}</td>
<td class="text">{{$log->changed_values}}</td>
<td class="text">{{$log->created_at->format('Y-m-d h:i a')}}</td>
</tr>
@endforeach
Expand Down

0 comments on commit 592e6b8

Please sign in to comment.