2018-09-16 20:21:17 +00:00
|
|
|
<div class="mb-4 pb-4">
|
|
|
|
<h4 class="font-weight-bold">Account Log</h4>
|
|
|
|
<hr>
|
2019-04-11 19:58:56 +00:00
|
|
|
<ul class="list-group border" style="max-height: 400px;overflow-y: auto;">
|
2018-09-16 20:21:17 +00:00
|
|
|
@if($activity->count() == 0)
|
|
|
|
<p class="alert alert-info font-weight-bold">No activity logs found!</p>
|
|
|
|
@endif
|
|
|
|
@foreach($activity as $log)
|
2019-04-11 19:58:56 +00:00
|
|
|
<li class="list-group-item rounded-0 border-0">
|
2018-09-16 20:21:17 +00:00
|
|
|
<div class="media">
|
|
|
|
<div class="media-body">
|
|
|
|
<span class="my-0 font-weight-bold text-muted">
|
|
|
|
{{$log->action}} - <span class="font-weight-normal">{{$log->message}}</span>
|
|
|
|
</span>
|
|
|
|
<span class="mb-0 text-muted float-right">
|
|
|
|
{{$log->created_at->diffForHumans(null, false, false, false)}}
|
|
|
|
<span class="pl-2" data-toggle="collapse" href="#log-details-{{$log->id}}" role="button" aria-expanded="false" aria-controls="log-details-{{$log->id}}">
|
|
|
|
<i class="fas fa-ellipsis-v"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
<div class="collapse" id="log-details-{{$log->id}}">
|
|
|
|
<div class="py-2">
|
|
|
|
<p class="mb-0">
|
|
|
|
<span class="font-weight-bold">IP Address:</span>
|
|
|
|
<span>
|
|
|
|
{{$log->ip_address}}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
<p class="mb-0">
|
|
|
|
<span class="font-weight-bold">User Agent:</span>
|
|
|
|
<span>
|
|
|
|
{{$log->user_agent}}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|