Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Sep 19, 2024
1 parent 176a50b commit c6108db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/actions-monitoring/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<p class="text-sm leading-none text-gray-600 ml-2">
{{ $action->user->name ?? 'Guest User' }}
{{ $action->user->{config('user-monitoring.user.display_attribute')} ?? 'Guest User' }}
</p>
</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/authentications-monitoring/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<p class="text-sm leading-none text-gray-600 ml-2">
{{ $authentication->user->name ?? 'Guest User' }}
{{ $authentication->user->{config('user-monitoring.user.display_attribute')} ?? 'Guest User' }}
</p>
</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/visits-monitoring/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<path stroke-linecap="round" stroke-linejoin="round" d="M17.982 18.725A7.488 7.488 0 0012 15.75a7.488 7.488 0 00-5.982 2.975m11.963 0a9 9 0 10-11.963 0m11.963 0A8.966 8.966 0 0112 21a8.966 8.966 0 01-5.982-2.275M15 9.75a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
<p class="text-sm leading-none text-gray-600 ml-2">
{{ $visit->user->name ?? 'Guest User' }}
{{ $visit->user->{config('user-monitoring.user.display_attribute')} ?? 'Guest User' }}
</p>
</div>
</td>
Expand Down

0 comments on commit c6108db

Please sign in to comment.