Skip to content

Commit 15ed1eb

Browse files
committed
Allow user to navigate inside the View Record Details page
1 parent 5e055b0 commit 15ed1eb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/resources/views/logger/partials/activity-table.blade.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,13 @@
6868
<tr @if($drilldownStatus && $hoverable) class="clickable-row" data-href="{{$prependUrl . $activity->id}}" data-toggle="tooltip" title="{{trans('LaravelLogger::laravel-logger.tooltips.viewRecord')}}" @endif >
6969
<td>
7070
<small>
71-
{{ $activity->id }}
71+
@if($hoverable)
72+
{{ $activity->id }}
73+
@else
74+
<a href="{{$prependUrl . $activity->id}}">
75+
{{ $activity->id }}
76+
</a>
77+
@endif
7278
</small>
7379
</td>
7480
<td>

0 commit comments

Comments
 (0)